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

@@ -44,7 +44,7 @@ onMounted(async () => {
await appWindow.setTitle("帖子不存在或解析失败");
return;
}
setInterval(() => {
setTimeout(() => {
loading.value = false;
}, 200);
});