diff --git a/src/components/modal/VacationModal.vue b/src/components/modal/VacationModal.vue index 9b249aa..1d2c51c 100644 --- a/src/components/modal/VacationModal.vue +++ b/src/components/modal/VacationModal.vue @@ -60,7 +60,6 @@ let globalCounter = 0; const usedVacations = computed(() => { const data = props.myVacations.flatMap((v) => { - console.log("πŸ“Œ usedVacations 처리 μ „ 데이터:", v); const count = v.used_quota return Array.from({ length: Math.ceil(count) }, (_, i) => ({ @@ -71,8 +70,6 @@ const usedVacations = computed(() => { _expandIndex: globalCounter++, })); }); - - console.log("βœ… usedVacations 생성됨:", data); return data; }); diff --git a/src/views/vacation/VacationManagement.vue b/src/views/vacation/VacationManagement.vue index 1a203f4..d3d2872 100644 --- a/src/views/vacation/VacationManagement.vue +++ b/src/views/vacation/VacationManagement.vue @@ -384,7 +384,6 @@ async function fetchVacationHistory(year) { const response = await axios.get(`vacation/history?year=${year}`); if (response.status === 200 && response.data) { myVacations.value = response.data.data.usedVacations || []; - console.log(myVacations.value) } } catch (error) { console.error(`🚨 νœ΄κ°€ 데이터 뢈러였기 μ‹€νŒ¨:`, error); @@ -478,7 +477,6 @@ function toggleHalfDay(type) { /* νŽ˜μ΄μ§€ 이동 μ‹œ λ³€κ²½ 사항 확인 */ router.beforeEach((to, from, next) => { if (hasChanges.value) { - console.log('νœ΄κ°€!!!!!'); const answer = window.confirm("μ €μž₯ν•˜μ§€ μ•Šμ€ λ³€κ²½ 사항이 μžˆμŠ΅λ‹ˆλ‹€. μ΄λ™ν•˜μ‹œκ² μŠ΅λ‹ˆκΉŒ?"); if (!answer) { return next(false);