kk
Results
1
issues of
kk
```vue import { ref, nextTick } from "vue" const count = ref(0) function increment() { count.value++ nextTick(() => { // 访问更新后的 DOM console.log(+document.getElementById("counter").textContent === 1) }) } {{ count }}...
answer
zh-CN
11