]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
docs: fix links (#645)
authorAlan Wang <948467222@qq.com>
Thu, 10 Dec 2020 08:46:42 +0000 (16:46 +0800)
committerGitHub <noreply@github.com>
Thu, 10 Dec 2020 08:46:42 +0000 (09:46 +0100)
docs/guide/essentials/dynamic-matching.md

index 6dd128315ef7fda832e17aaf5d21caa8c0e79130..ee009e4f5f7ddb0031a646e7468e8e7adbc81aed 100644 (file)
@@ -88,7 +88,7 @@ const routes = [
 ]
 ```
 
-In this specific scenario we are using a [custom regexp](/guide/advanced/path-matching.md#custom-regexp) between parentheses and marking the `pathMatch` param as [optionally repeatable](/guide/advanced/path-matching.md#zero-or-more). This is to allow us to directly navigate to the route if we need to by splitting the `path` into an array:
+In this specific scenario we are using a [custom regexp](/guide/essentials/route-matching-syntax.md#custom-regexp-in-params) between parentheses and marking the `pathMatch` param as [optionally repeatable](/guide/essentials/route-matching-syntax.md#optional-parameters). This is to allows us to directly navigate to the route if we need to by splitting the `path` into an array:
 
 ```js
 this.$router.push({
@@ -97,7 +97,7 @@ this.$router.push({
 })
 ```
 
-See more in the [repeated params](/guide/advanced/path-matching.md#zero-or-more) section.
+See more in the [repeated params](/guide/essentials/route-matching-syntax.md#repeatable-params) section.
 
 If you are using [History mode](./history-mode.md), make sure to follow the instructions to correctly configure your server as well.