fix. 모달 딤드 기본값 true로 수정

This commit is contained in:
clkim
2025-11-06 15:31:42 +09:00
parent 41ede193e5
commit 2d413c865c
5 changed files with 5 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ interface props {
}
const props = withDefaults(defineProps<props>(), {
isShowDimmed: false,
isShowDimmed: true,
isOutsideClose: false,
})

View File

@@ -9,7 +9,7 @@ interface props {
}
const props = withDefaults(defineProps<props>(), {
isShowDimmed: false,
isShowDimmed: true,
isOutsideClose: false,
})

View File

@@ -8,7 +8,7 @@ interface props {
}
const props = withDefaults(defineProps<props>(), {
isShowDimmed: false,
isShowDimmed: true,
isOutsideClose: false,
})

View File

@@ -26,7 +26,6 @@ export const useTokenValidation = () => {
const showLoginModal = (alertKey: string) => {
modalStore.handleOpenConfirm({
contentText: tm(alertKey),
isShowDimmed: true,
confirmButtonText: tm('Text_StoveLogin'),
confirmButtonEvent: () => {
csrGoStoveLogin()

View File

@@ -23,7 +23,7 @@ export const useModalStore = defineStore('modalStore', () => {
}
const handleOpenAlert = ({
isShowDimmed = false,
isShowDimmed = true,
modalName = '',
isOutsideClose = false,
contentText,
@@ -47,7 +47,7 @@ export const useModalStore = defineStore('modalStore', () => {
}
const handleOpenConfirm = ({
isShowDimmed = false,
isShowDimmed = true,
modalName = '',
isOutsideClose = false,
contentText,