mirror of
https://git.rape.pet/ulith/amputoma-fe.git
synced 2025-02-14 09:12:43 +01:00
14 lines
202 B
JavaScript
14 lines
202 B
JavaScript
const DialogModal = {
|
|
props: {
|
|
darkOverlay: {
|
|
default: true,
|
|
type: Boolean
|
|
},
|
|
onCancel: {
|
|
default: () => {},
|
|
type: Function
|
|
}
|
|
}
|
|
}
|
|
|
|
export default DialogModal
|