Timer delay set to 15s

This commit is contained in:
pa
2025-11-25 21:31:06 +09:00
committed by Natsumi
parent 3fc1925280
commit 05c5b32755
+1 -1
View File
@@ -22,7 +22,7 @@
onMounted(() => { onMounted(() => {
timerId = setInterval(() => { timerId = setInterval(() => {
now.value = Date.now(); now.value = Date.now();
}, 5000); }, 15000);
}); });
onBeforeUnmount(() => { onBeforeUnmount(() => {
clearInterval(timerId); clearInterval(timerId);