This commit is contained in:
duanxiaohai 2024-12-04 10:06:23 +08:00
parent 882b5397fd
commit 271214f32a
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>