vuejs-challenges
vuejs-challenges copied to clipboard
12 - 优化性能的指令
// 你的答案
`
const count = ref(0)
setInterval(() => { count.value++ }, 1000)
//方式1 Make it never change: {{ count }} //方式2 Make it never change: {{ count }} `