๐ Reference
๐ Chapter
nextTick
์ด๋ผ๋ ํจ์๋ ์ด๋ฅผ ๊ธฐ๋ค๋ ค์ฃผ์ด ๋ชจ๋ ๋ฐ์ดํฐ์ ์
๋ฐ์ดํธ๋ ๋ ๋๋ง์ด ๋๋ ํ DOM์ ์ ๊ทผํ๋ ํจ์๋ฅผ ์๋ฏธํ๋ค.function nextTick(callback?: () => void): Promise<void>
<script setup>
import { ref, nextTick } from 'vue'
const count = ref(0)
async function increment() {
count.value++
// DOM not yet updated
console.log(document.getElementById('counter').textContent) // 0
await nextTick()
// DOM is now updated
console.log(document.getElementById('counter').textContent) // 1
}
</script>
<template>
<button id="counter" @click="increment">{{ count }}</button>
</template>