diff --git a/src/components/Dialog.vue b/src/components/Dialog.vue
index 1b9898f1..53afeb4f 100644
--- a/src/components/Dialog.vue
+++ b/src/components/Dialog.vue
@@ -14,12 +14,14 @@ const props = withDefaults(defineProps<{
maxWidth?: string | number
contentHeight?: string | number
contentMaxHeight?: string | number
+ showFooter?: boolean
centerFooter?: boolean
loading?: boolean
preventCloseWhenLoading?: boolean
}>(), {
preventCloseWhenLoading: true,
frostedGlass: true,
+ showFooter: true,
})
const emit = defineEmits(['close', 'confirm'])
@@ -175,6 +177,7 @@ function handleConfirm() {