AnalysisSystemForRadionucli.../src/mixins/ModalMixin.js

20 lines
453 B
JavaScript
Raw Normal View History

export default {
props: {
value: {
type: Boolean
}
},
computed: {
visible: {
get() {
if (this.value && this.beforeModalOpen && typeof this.beforeModalOpen == 'function') {
this.beforeModalOpen()
}
return this.value
},
set(val) {
this.$emit('input', val)
}
}
}
}