캘린더 높이 오토

This commit is contained in:
dyhj625 2025-03-11 15:29:52 +09:00
parent 3fa7eff7d9
commit d2bc6f4272

View File

@ -137,6 +137,7 @@ const calendarOptions = reactive({
center: "title", center: "title",
right: "prev,next", right: "prev,next",
}, },
contentHeight:"auto",
locale: "ko", locale: "ko",
selectable: false, selectable: false,
dateClick: handleDateClick, dateClick: handleDateClick,
@ -383,7 +384,6 @@ async function fetchVacationHistory(year) {
try { try {
const response = await axios.get(`vacation/history?year=${year}`); const response = await axios.get(`vacation/history?year=${year}`);
if (response.status === 200 && response.data) { if (response.status === 200 && response.data) {
console.log(response.data.data)
myVacations.value = response.data.data.usedVacations || []; myVacations.value = response.data.data.usedVacations || [];
receivedVacations.value = response.data.data.receivedVacations || [] receivedVacations.value = response.data.data.receivedVacations || []
} }