mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
17 lines
336 B
JavaScript
17 lines
336 B
JavaScript
export default {
|
|
mounted() {
|
|
$(this.$refs.modal).modal('show');
|
|
$(this.$refs.modal).on('hidden.bs.modal', () => {
|
|
this.$emit('close');
|
|
});
|
|
},
|
|
beforeUnmount() {
|
|
$(this.$refs.modal).modal('hide');
|
|
},
|
|
methods: {
|
|
close() {
|
|
this.$emit('close');
|
|
$(this.$refs.modal).modal('hide');
|
|
}
|
|
},
|
|
}
|