Skip to content

Commit 7901ad1

Browse files
committed
remove redundant actuallys in components-dynamic-async
1 parent 1db36a0 commit 7901ad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/components-dynamic-async.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Check out more details on `<keep-alive>` in the [API reference](../api/#keep-ali
201201

202202
## Async Components
203203

204-
In large applications, we may need to divide the app into smaller chunks and only load a component from the server when it's actually needed. To make that easier, Vue allows you to define your component as a factory function that asynchronously resolves your component definition. Vue will only trigger the factory function when the component actually needs to be rendered and will cache the result for future re-renders. For example:
204+
In large applications, we may need to divide the app into smaller chunks and only load a component from the server when it's needed. To make that easier, Vue allows you to define your component as a factory function that asynchronously resolves your component definition. Vue will only trigger the factory function when the component needs to be rendered and will cache the result for future re-renders. For example:
205205

206206
``` js
207207
Vue.component('async-example', function (resolve, reject) {

0 commit comments

Comments
 (0)