From: Alan Wang <948467222@qq.com> Date: Thu, 10 Dec 2020 08:46:42 +0000 (+0800) Subject: docs: fix links (#645) X-Git-Tag: v4.0.2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b6520437efc50134432599d5e57785475837111;p=thirdparty%2Fvuejs%2Frouter.git docs: fix links (#645) --- diff --git a/docs/guide/essentials/dynamic-matching.md b/docs/guide/essentials/dynamic-matching.md index 6dd12831..ee009e4f 100644 --- a/docs/guide/essentials/dynamic-matching.md +++ b/docs/guide/essentials/dynamic-matching.md @@ -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.