💄 先把所有用到 loading 的给转了一下

This commit is contained in:
BTMuli
2023-05-25 22:06:40 +08:00
parent 9e95fb29b0
commit 749f68f982
10 changed files with 117 additions and 133 deletions

View File

@@ -54,14 +54,14 @@ watch(
(v) => {
if (v) {
showOut.value = true;
setTimeout(() => {
showIn.value = true;
}, 0);
} else {
showIn.value = false;
} else {
setTimeout(() => {
showIn.value = false;
}, 100);
setTimeout(() => {
showOut.value = false;
}, 200);
}, 300);
}
},
);