From 2469d3ec885f61fe73d7a795e05a92ca61b76b75 Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Tue, 8 Apr 2025 10:33:13 +0900 Subject: [PATCH] =?UTF-8?q?=EB=82=A0=EC=94=A8=20=EB=A1=9C=EB=94=A9?= =?UTF-8?q?=EC=A4=91=EC=9D=BC=EB=96=84=20=EA=B8=80=EC=94=A8=20=EC=95=88?= =?UTF-8?q?=EB=B3=B4=EC=9D=B4=EA=B2=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/TheTop.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/layouts/TheTop.vue b/src/layouts/TheTop.vue index 993e695..6159331 100644 --- a/src/layouts/TheTop.vue +++ b/src/layouts/TheTop.vue @@ -12,7 +12,7 @@
{{ weather.description }} - + 최저 {{ weather.tempMin }}° / 최고 {{ weather.tempMax }}°
@@ -231,6 +231,15 @@ const weather = ref({}); const dailyWeatherList = ref([]); + const weatherReady = computed(() => { + return ( + weather.value && + weather.value.tempMin !== null && + weather.value.tempMax !== null && + !!weather.value.description + ); + }); + // 내가 참여하고 있는 진행 중인 프로젝트 목록 const myActiveProjects = computed(() => { return projectStore.activeMemberProjectList || [];