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

@@ -86,7 +86,7 @@ onMounted(async () => {
}
loadingTitle.value = "正在渲染数据...";
lotteryCard.value = MysOper.Lottery.card.lottery(lotteryData);
setInterval(() => {
setTimeout(() => {
loading.value = false;
}, 200);
});