fix: 无法立即显示时间
This commit is contained in:
parent
9d2290d694
commit
b9f9e5d527
@ -1,8 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div
|
<div class="weather" v-if="weatherData.adCode.city && weatherData.weather.weather">
|
||||||
class="weather"
|
|
||||||
v-if="weatherData.adCode.city && weatherData.weather.weather"
|
|
||||||
>
|
|
||||||
<span>{{ weatherData.adCode.city }} </span>
|
<span>{{ weatherData.adCode.city }} </span>
|
||||||
<span>{{ weatherData.weather.weather }} </span>
|
<span>{{ weatherData.weather.weather }} </span>
|
||||||
<span>{{ weatherData.weather.temperature }}℃</span>
|
<span>{{ weatherData.weather.temperature }}℃</span>
|
||||||
|
@ -46,10 +46,14 @@ const store = mainStore();
|
|||||||
const currentTime = ref({});
|
const currentTime = ref({});
|
||||||
const timeInterval = ref(null);
|
const timeInterval = ref(null);
|
||||||
|
|
||||||
onMounted(() => {
|
// 更新时间
|
||||||
timeInterval.value = setInterval(() => {
|
const updateTimeData = () => {
|
||||||
currentTime.value = getCurrentTime();
|
currentTime.value = getCurrentTime();
|
||||||
}, 1000);
|
};
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
updateTimeData();
|
||||||
|
timeInterval.value = setInterval(updateTimeData, 1000);
|
||||||
});
|
});
|
||||||
|
|
||||||
onBeforeUnmount(() => {
|
onBeforeUnmount(() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user