vuejs-challenges icon indicating copy to clipboard operation
vuejs-challenges copied to clipboard

10 - 生命周期钩子

Open undefined-zzk opened this issue 1 year ago • 0 comments

// 你的答案

`

onMounted(() => { timer.value = window.setInterval(() => { count.value++ }, 1000) }) onBeforeUnmount(()=>{ timer.value && clearInterval(timer.value) })

`

undefined-zzk avatar Jan 30 '24 08:01 undefined-zzk