Skip to content

Commit 848f125

Browse files
author
Radamés Roriz
committed
docs(dynamic-matching): add optional param on docs
1 parent 51d4f77 commit 848f125

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docs/guide/essentials/dynamic-matching.md

+17
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,26 @@ You can have multiple dynamic segments in the same route, and they will map to c
3535
| ----------------------------- | ------------------- | -------------------------------------- |
3636
| /user/:username | /user/evan | `{ username: 'evan' }` |
3737
| /user/:username/post/:post_id | /user/evan/post/123 | `{ username: 'evan', post_id: '123' }` |
38+
| /user/:username/post/:post_id?| /user/evan/post | `{ username: 'evan' }` |
3839

3940
In addition to `$route.params`, the `$route` object also exposes other useful information such as `$route.query` (if there is a query in the URL), `$route.hash`, etc. You can check out the full details in the [API Reference](../../api/#the-route-object).
4041

42+
## Optional Param
43+
44+
often we will need to map the same route with and without param to the same component. For example, we may have a `User` component which should be rendered for all users or a specific ID. In `vue-router` we can use a dynamic segment in the path to achieve that:
45+
```js
46+
const User = {
47+
template: '<div>User</div>'
48+
}
49+
50+
const router = new VueRouter({
51+
routes: [
52+
// dynamic segments start with a colon
53+
{ path: '/user/:id?', component: User }
54+
]
55+
})
56+
```
57+
4158
## Reacting to Params Changes
4259

4360
One thing to note when using routes with params is that when the user navigates from `/user/foo` to `/user/bar`, **the same component instance will be reused**. Since both routes render the same component, this is more efficient than destroying the old instance and then creating a new one. **However, this also means that the lifecycle hooks of the component will not be called**.

0 commit comments

Comments
 (0)