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
### Writing asynchronous tests using `nextTick` (new)
31
31
32
-
Vue batches watcher updates and runs them asynchronously on the "next tick".
32
+
By default, Vue batches updates to run asynchronously (on the next "tick"). This is to prevent unnecessary DOM re-renders, and watcher computations ([see the docs](https://vuejs.org/v2/guide/reactivity.html#Async-Update-Queue) for more details).
33
33
34
-
In practice, this means you must wait for updates to run after you set a reactive property. You can wait for updates with `Vue.nextTick()`:
34
+
This means you **must** wait for updates to run after you set a reactive property. You can wait for updates with `Vue.nextTick()`:
0 commit comments