1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-06 05:40:09 +00:00
bramw_baserow/web-frontend/modules/core/mixins/modal.js
2020-03-31 14:15:27 +00:00

25 lines
577 B
JavaScript

/**
* This mixin is for components that have the Modal component as root element.
* It will make it easier to call the root modal specific functions.
*/
export default {
methods: {
getRootModal() {
if (
this.$children.length > 0 &&
this.$children[0].$options.name === 'Modal'
) {
return this.$children[0]
}
},
toggle(...args) {
this.getRootModal().toggle(...args)
},
show(...args) {
this.getRootModal().show(...args)
},
hide(...args) {
this.getRootModal().hide(...args)
},
},
}