From a1e8fc5760d2b3869bdbbf532c1ca69cf51e99a8 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Sun, 15 Mar 2015 22:55:21 +0900 Subject: [PATCH] Fix: Vue.nextTick description --- source/api/global-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/api/global-api.md b/source/api/global-api.md index 66741d05c8..079241e52e 100644 --- a/source/api/global-api.md +++ b/source/api/global-api.md @@ -153,7 +153,7 @@ Will result in: - **callback** `Function` -Vue.js batches view updates and executes them all asynchronously. It uses `requestAnimationFrame` if available and falls back to `setTimeout(fn, 0)`. This method calls the callback after the next view update, which can be useful when you want to wait until the view has been updated. +Vue.js batches view updates and executes them all asynchronously. It uses `MutationObserver` if available and falls back to `setTimeout(fn, 0)`. This method calls the callback after the next view update, which can be useful when you want to wait until the view has been updated. ### Vue.use( plugin, [args...] ) @@ -164,4 +164,4 @@ Mount a Vue.js plugin. If the plugin is an Object, it must have an `install` met ### Vue.util -Exposes the internal `util` module, which contains a number of utility methods. This is intended for advanced plugin/directive authoring, so you will need to look at the source code to see what's available. \ No newline at end of file +Exposes the internal `util` module, which contains a number of utility methods. This is intended for advanced plugin/directive authoring, so you will need to look at the source code to see what's available.