fix. 사전예약 수정
This commit is contained in:
@@ -12,9 +12,14 @@ const props = withDefaults(defineProps<props>(), {
|
||||
isOutsideClose: false,
|
||||
})
|
||||
|
||||
const emit = defineEmits<{
|
||||
close: []
|
||||
}>()
|
||||
|
||||
const isOpen = defineModel<boolean>('isOpen', { default: false })
|
||||
|
||||
const handleCloseModal = () => {
|
||||
emit('close')
|
||||
isOpen.value = false
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user