dialog_modal.js (313B)
- const DialogModal = {
- props: {
- darkOverlay: {
- default: true,
- type: Boolean
- },
- onCancel: {
- default: () => {},
- type: Function
- }
- },
- computed: {
- mobileCenter () {
- return this.$store.getters.mergedConfig.modalMobileCenter
- }
- }
- }
- export default DialogModal