fix. 팝업 버튼 추가
This commit is contained in:
@@ -1,14 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
interface props {
|
||||
isShowDimmed?: boolean
|
||||
contentText?: string
|
||||
confirmButtonText?: string
|
||||
cancelButtonText?: string
|
||||
isOutsideClose?: boolean
|
||||
modalName?: string
|
||||
}
|
||||
import type { DialogParams } from '#layers/types/components/modal'
|
||||
|
||||
const props = withDefaults(defineProps<props>(), {
|
||||
const props = withDefaults(defineProps<DialogParams>(), {
|
||||
isShowDimmed: true,
|
||||
isOutsideClose: false,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user