feat. FX_PREREGIST_01 템플릿 제작

This commit is contained in:
clkim
2025-11-06 21:01:56 +09:00
parent a2112f7b2d
commit e943f3a9a2
9 changed files with 1490 additions and 530 deletions

View File

@@ -18,9 +18,9 @@ const { tm } = useI18n()
const isOpen = defineModel<boolean>('isOpen', { default: false })
const setButtonEvent = (event?: () => void | void) => {
if (typeof event === 'function') {
return event()
const setButtonEvent = (event?: () => void) => {
if (event) {
event()
}
isOpen.value = false
}