pleroma-fe/src/components/dialog_modal/dialog_modal.js

19 lines
313 B
JavaScript
Raw Normal View History

2019-02-18 17:49:32 +03:00
const DialogModal = {
props: {
darkOverlay: {
default: true,
type: Boolean
},
onCancel: {
default: () => {},
type: Function
}
2025-01-07 22:08:12 +02:00
},
computed: {
mobileCenter () {
return this.$store.getters.mergedConfig.modalMobileCenter
}
2019-02-18 17:49:32 +03:00
}
}
export default DialogModal