You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/essentials/dynamic-matching.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ const routes = [
88
88
]
89
89
```
90
90
91
-
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:
91
+
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:
92
92
93
93
```js
94
94
this.$router.push({
@@ -97,7 +97,7 @@ this.$router.push({
97
97
})
98
98
```
99
99
100
-
See more in the [repeated params](/guide/advanced/path-matching.md#zero-or-more) section.
100
+
See more in the [repeated params](/guide/essentials/route-matching-syntax.md#repeatable-params) section.
101
101
102
102
If you are using [History mode](./history-mode.md), make sure to follow the instructions to correctly configure your server as well.
0 commit comments