fix. 모달 딤드 기본값 true로 수정
This commit is contained in:
@@ -8,7 +8,7 @@ interface props {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const props = withDefaults(defineProps<props>(), {
|
const props = withDefaults(defineProps<props>(), {
|
||||||
isShowDimmed: false,
|
isShowDimmed: true,
|
||||||
isOutsideClose: false,
|
isOutsideClose: false,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ interface props {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const props = withDefaults(defineProps<props>(), {
|
const props = withDefaults(defineProps<props>(), {
|
||||||
isShowDimmed: false,
|
isShowDimmed: true,
|
||||||
isOutsideClose: false,
|
isOutsideClose: false,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ interface props {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const props = withDefaults(defineProps<props>(), {
|
const props = withDefaults(defineProps<props>(), {
|
||||||
isShowDimmed: false,
|
isShowDimmed: true,
|
||||||
isOutsideClose: false,
|
isOutsideClose: false,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ export const useTokenValidation = () => {
|
|||||||
const showLoginModal = (alertKey: string) => {
|
const showLoginModal = (alertKey: string) => {
|
||||||
modalStore.handleOpenConfirm({
|
modalStore.handleOpenConfirm({
|
||||||
contentText: tm(alertKey),
|
contentText: tm(alertKey),
|
||||||
isShowDimmed: true,
|
|
||||||
confirmButtonText: tm('Text_StoveLogin'),
|
confirmButtonText: tm('Text_StoveLogin'),
|
||||||
confirmButtonEvent: () => {
|
confirmButtonEvent: () => {
|
||||||
csrGoStoveLogin()
|
csrGoStoveLogin()
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ export const useModalStore = defineStore('modalStore', () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const handleOpenAlert = ({
|
const handleOpenAlert = ({
|
||||||
isShowDimmed = false,
|
isShowDimmed = true,
|
||||||
modalName = '',
|
modalName = '',
|
||||||
isOutsideClose = false,
|
isOutsideClose = false,
|
||||||
contentText,
|
contentText,
|
||||||
@@ -47,7 +47,7 @@ export const useModalStore = defineStore('modalStore', () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const handleOpenConfirm = ({
|
const handleOpenConfirm = ({
|
||||||
isShowDimmed = false,
|
isShowDimmed = true,
|
||||||
modalName = '',
|
modalName = '',
|
||||||
isOutsideClose = false,
|
isOutsideClose = false,
|
||||||
contentText,
|
contentText,
|
||||||
|
|||||||
Reference in New Issue
Block a user