Skip to content

Commit 193aacb

Browse files
MachinisteWebyyx990803
authored andcommitted
Remove unnecessary new line
Signed-off-by: Bruno Lesieur <[email protected]>
1 parent c752b3b commit 193aacb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/en/advanced/lazy-loading.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
When building apps with a bundler, the JavaScript bundle can become quite large, and thus affect the page load time. It would be more efficient if we can split each route's components into a separate chunk, and only load them when the route is visited.
44

5-
Combining Vue's [async component feature](http://vuejs.org/guide/components.html#Async-Components) and webpack's [code splitting feature](https://webpack.js.org/guides/code-splitting-async/), it's trivially easy to
6-
lazy-load route components.
5+
Combining Vue's [async component feature](http://vuejs.org/guide/components.html#Async-Components) and webpack's [code splitting feature](https://webpack.js.org/guides/code-splitting-async/), it's trivially easy to lazy-load route components.
76

87
First, an async component can be defined as a factory function that returns a Promise (which should resolve to the component itself):
98

0 commit comments

Comments
 (0)