pleroma-fe/src/components/dialog_modal/dialog_modal.js
2025-01-07 22:08:12 +02:00

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