From 7a37f837d6c0694535e357018ab2e27852463533 Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Tue, 8 Apr 2025 10:01:09 +0900 Subject: [PATCH] =?UTF-8?q?=EB=82=A0=EC=94=A8=20=EC=8A=A4=ED=86=A0?= =?UTF-8?q?=EB=A6=AC=EC=A7=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/TheTop.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/TheTop.vue b/src/layouts/TheTop.vue index 3ea9bd1..25c61e4 100644 --- a/src/layouts/TheTop.vue +++ b/src/layouts/TheTop.vue @@ -320,7 +320,7 @@ // 로그인 페이지가 아닐 때만 날씨 정보를 가져오도록 if (route.name !== 'login' && route.name !== undefined) { // 날씨 정보 갱신 - await weatherStore.getWeatherInfo(); + await weatherStore.getWeatherInfoWithCache(); weather.value = weatherStore.weather; // 오늘 날씨 dailyWeatherList.value = weatherStore.dailyWeatherList; // 주간 날씨 }