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 || [];