19 lines
313 B
JavaScript
19 lines
313 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
|