]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
docs: fix link to dynamic import docs (fix #1498) (#1500)
authorDavid Yunevich <f3oall@gmail.com>
Wed, 3 Aug 2022 20:09:01 +0000 (00:09 +0400)
committerGitHub <noreply@github.com>
Wed, 3 Aug 2022 20:09:01 +0000 (22:09 +0200)
packages/docs/guide/advanced/lazy-loading.md

index 48a70202d3d17d8ba6aef4f488d5fb47d96d42ac..0a4f35808fc790606a518dc959d28faa9a8258ca 100644 (file)
@@ -7,7 +7,7 @@
 
 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:
+Vue Router supports [dynamic imports](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import) out of the box, meaning you can replace static imports with dynamic ones:
 
 ```js
 // replace