YYYY년 M월 => YYYY-MM 형태로 변환function convertKoreanDate(str) { // "2025 년 4월"에서 숫자만 추출 const match = str.match(/(\d{4})\s*년\s*(\d{1,2})월/); if (!match) return null; const year = match[1]; // 월은 항상 2자리로 맞춤 const month = match[2].padStart(2, '0'); return `${year}-${month}`;}dayjs()를 활용하여 날짜 범위 기본값 셋팅const dateRange = ref([ dayjs().subtract(28, 'day').format('YYYY-MM-DD'), dayjs().format('YYY..