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