You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<scriptsetup>
import {ref,nextTick} from "vue"
const count = ref(0)
const counter = ref(null)
async function increment() {count.value++/** * DOM is not yet updated, how can we make sure that the DOM gets updated * Make the output be true */awaitnextTick()console.log(+counter.value.textContent===count.value)}</script><template><buttonref="counter" @click="increment">{{ count }}</button></template>
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: