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