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

View File

@@ -22,7 +22,7 @@
onMounted(() => {
timerId = setInterval(() => {
now.value = Date.now();
}, 5000);
}, 15000);
});
onBeforeUnmount(() => {
clearInterval(timerId);