๐Ÿ“š Reference


๐Ÿ“œ Chapter


Troubleshooting

nextTick


์‚ฌ์šฉ


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>