mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
export default {
|
|
methods: {
|
|
attachmentMoved(attachmentId, targetId) {
|
|
this.$emit('attachment:moved', attachmentId, targetId);
|
|
}
|
|
}
|
|
};
|