添加匹配中效果

This commit is contained in:
kron
2025-06-25 21:54:18 +08:00
parent 664678cba0
commit 9090f06730
7 changed files with 353 additions and 147 deletions

View File

@@ -21,7 +21,7 @@ watch(
() => props.seq,
() => {
if (props.seq > 0) {
if(show.value) return;
if (show.value) return;
if (timer.value) clearInterval(timer.value);
count.value = props.countdown;
show.value = true;
@@ -38,6 +38,9 @@ watch(
if (timer.value) clearInterval(timer.value);
show.value = false;
}
},
{
immediate: true,
}
);
</script>