From 0e0c4ceed4395eb8c7c1548751fdde89ed20a1fa Mon Sep 17 00:00:00 2001 From: yoon Date: Tue, 18 Mar 2025 10:35:15 +0900 Subject: [PATCH] =?UTF-8?q?=ED=95=84=EC=9A=94=EC=97=86=EB=8A=94=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/commuters/CommuterCalendar.vue | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/components/commuters/CommuterCalendar.vue b/src/components/commuters/CommuterCalendar.vue index 4883313..c350655 100644 --- a/src/components/commuters/CommuterCalendar.vue +++ b/src/components/commuters/CommuterCalendar.vue @@ -105,7 +105,6 @@ const eventDate = ref(''); const selectedProject = ref(null); const checkedInProject = ref(null); -// 모달 상태 const isModalOpen = ref(false); const commuters = ref([]); @@ -375,12 +374,6 @@ watch(() => projectStore.selectedProject, (newProject) => { } }); - -// 모달 열기 -const openModal = () => { - isModalOpen.value = true; -}; - // 모달 닫기 const closeModal = () => { isModalOpen.value = false;