vuejs-challenges
vuejs-challenges copied to clipboard
10 - 生命周期钩子
// 你的答案
`
onMounted(() => { timer.value = window.setInterval(() => { count.value++ }, 1000) }) onBeforeUnmount(()=>{ timer.value && clearInterval(timer.value) })
Child Component: {{ count }}