mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-04-30 19:19:29 +08: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
|