fix(time): setInterval -> setTimeout

This commit is contained in:
BTMuli
2023-04-03 13:32:32 +08:00
parent cd54e4a80e
commit 2fe9fae523
6 changed files with 6 additions and 6 deletions

View File

@@ -47,7 +47,7 @@ onMounted(async () => {
loadingTitle.value = "公告不存在或解析失败";
return;
}
setInterval(() => {
setTimeout(() => {
loading.value = false;
}, 200);
});