diff --git a/docs/en/README.md b/docs/en/README.md index 7cf3985b6..aa827ee74 100644 --- a/docs/en/README.md +++ b/docs/en/README.md @@ -29,6 +29,7 @@ Vue Test Utils is the official unit testing utility library for Vue.js. - [attrs](api/options.md#attrs) - [listeners](api/options.md#listeners) - [provide](api/options.md#provide) + - [sync](api/options.md#sync) - [other options](api/options.md#other-options) * [Wrapper](api/wrapper/README.md) * [attributes](api/wrapper/attributes.md) diff --git a/docs/en/SUMMARY.md b/docs/en/SUMMARY.md index a0348be83..3e974c084 100644 --- a/docs/en/SUMMARY.md +++ b/docs/en/SUMMARY.md @@ -25,6 +25,7 @@ - [attrs](api/options.md#attrs) - [listeners](api/options.md#listeners) - [provide](api/options.md#provide) + - [sync](api/options.md#sync) - [other options](api/options.md#other-options) * [Wrapper](api/wrapper/README.md) * [attributes](api/wrapper/attributes.md) diff --git a/docs/en/api/README.md b/docs/en/api/README.md index 3a4464f25..badf7ff19 100644 --- a/docs/en/api/README.md +++ b/docs/en/api/README.md @@ -13,6 +13,7 @@ - [attrs](./options.md#attrs) - [listeners](./options.md#listeners) - [provide](./options.md#provide) + - [sync](./options.md#sync) - [other options](./options.md#other-options) * [Wrapper](./wrapper/README.md) * [attributes](./wrapper/attributes.md) diff --git a/docs/en/api/options.md b/docs/en/api/options.md index 9aaafe579..4b07cca5e 100644 --- a/docs/en/api/options.md +++ b/docs/en/api/options.md @@ -172,7 +172,8 @@ Pass properties for components to use in injection. See [provide/inject](https:/ - type: `boolean` - default: `true` -Sets all watchers to run synchronously. +When `sync` is `true`, the Vue component is rendered synchronously. +When `sync` is `false`, the Vue component is rendered asynchronously. ## Other options