scinote-web/app/javascript/vue/shared/content/attachments/mixins/attachment_moved.js
2023-08-25 09:46:53 +02:00

7 lines
151 B
JavaScript

export default {
methods: {
attachmentMoved(attachmentId, targetId) {
this.$emit('attachment:moved', attachmentId, targetId);
}
}
};