Skip to content

Commit 398dcdf

Browse files
committed
add config.async to change list
1 parent 4cd4daf commit 398dcdf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

changes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,11 @@ Vue.config.debug = true
459459

460460
- #### New config option: `proto`
461461

462-
Be default, Vue.js alters the `__proto__` of observed Arrays when available for faster method interception/augmentation. This would only cause issue in the rare case when you are observing a subclass of the native Array. In that case, you can set `Vue.config.proto = false` to prohibit this behavior.
462+
By default, Vue.js alters the `__proto__` of observed Arrays when available for faster method interception/augmentation. This would only cause issue in the rare case when you are observing a subclass of the native Array. In that case, you can set `Vue.config.proto = false` to prohibit this behavior.
463+
464+
- #### New config option: `async`
465+
466+
By default Vue.js uses batched async updates for watchers and DOM updates. This strategy ensures minimal calls to directive and watcher functions, but in some situations also makes things harder to reason about. It is now possible to force synchronous updates by setting `Vue.config.async = false`.
463467

464468
## Transition API Change
465469

0 commit comments

Comments
 (0)