This commit is contained in:
姚宇浩 2024-12-03 11:48:08 +08:00
parent b3ba94a47a
commit 18b7dbfe7d
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ const resetTimer = () => {
}
};
onMounted(() => {
// window.addEventListener("mousemove", resetTimer);
// window.addEventListener("keydown", resetTimer);
window.addEventListener("mousemove", resetTimer);
window.addEventListener("keydown", resetTimer);
});
</script>