19 lines
317 B
JavaScript
19 lines
317 B
JavaScript
const DialogModal = {
|
|
props: {
|
|
darkOverlay: {
|
|
default: true,
|
|
type: Boolean,
|
|
},
|
|
onCancel: {
|
|
default: () => {},
|
|
type: Function,
|
|
},
|
|
},
|
|
computed: {
|
|
mobileCenter() {
|
|
return this.$store.getters.mergedConfig.modalMobileCenter
|
|
},
|
|
},
|
|
}
|
|
|
|
export default DialogModal
|