mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-02-13 16:13:21 +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
|