휴가 클릭시 좌측 메뉴에 선택 활성화 되게

This commit is contained in:
nevermoregb 2025-04-08 20:23:41 +09:00
parent fc6c828624
commit 94356aba09

View File

@ -97,7 +97,6 @@
const calendarDatepicker = ref(null);
//const dailyWeatherList = ref([]);
const selectedProject = ref(null);
const checkedInProject = ref(null);
@ -587,7 +586,7 @@
};
const handleClickVacation = () => {
router.push({ path: 'Vacation' });
router.push('/vacation');
};
// ( )
@ -606,7 +605,7 @@
selectedProject.value = newProject.PROJCTSEQ;
checkedInProject.value = newProject;
}
}
},
);
onMounted(async () => {
@ -636,13 +635,10 @@
window.addEventListener('wheel', handleWheelEvent);
window.addEventListener('click', colorToday);
datePickerStore.initDatePicker(
fullCalendarRef,
async (year, month, options) => {
datePickerStore.initDatePicker(fullCalendarRef, async (year, month, options) => {
//
await fetchData();
}
);
});
});
</script>
<style scoped>