]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
docs: edit typo (#1340)
author‪spindog <4016451+spind0g@users.noreply.github.com>
Mon, 14 Mar 2022 14:15:40 +0000 (22:15 +0800)
committerGitHub <noreply@github.com>
Mon, 14 Mar 2022 14:15:40 +0000 (15:15 +0100)
docs/guide/advanced/lazy-loading.md

index bd8c6ae05d9c055fd680c003c7c56d90f2ccfca8..48a70202d3d17d8ba6aef4f488d5fb47d96d42ac 100644 (file)
@@ -5,7 +5,7 @@
   title="Learn about lazy loading routes"
 />
 
-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 separate chunks, and only load them when the route is visited.
+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 separate chunks, and only load them when the route is visited.
 
 Vue Router supports [dynamic imports](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Dynamic_Imports) out of the box, meaning you can replace static imports with dynamic ones: