scinote-web/app/javascript/vue/shared/content/attachments/mixins/attachment_moved.js

8 lines
150 B
JavaScript
Raw Normal View History

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