Nuxtjs Guideline: Lifecycle — Use nextTick for post-render access. Description: Wait for DOM updates before accessing elements. Do: await nextTick() after state changes. Don't: Immediate DOM access after state change. Good Example: count.value++; await nextTick(); el.value.focus(). Bad Example: count.value++; el.value.focus(). Severity: Medium. Docs: https://nuxt.com/docs/api/utils/next-tick.