Skip to content

Commit

Permalink
docs(zh): 文档错误修改 (vuejs#1262)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoubichuan authored Jan 14, 2022
1 parent c4fcdaf commit ac445dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/zh/guide/essentials/dynamic-matching.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 带参数的动态路由匹配

很多时候,我们需要将给定匹配模式的路由映射到同一个组件。例如,我们可能有一个 `User` 组件,它应该对所有用户进行渲染,但用户 ID 不同。在 Vue Router 中,我们可以在路径中使用一个动态段来实现,我们称之为 _路径参数_
很多时候,我们需要将给定匹配模式的路由映射到同一个组件。例如,我们可能有一个 `User` 组件,它应该对所有用户进行渲染,但用户 ID 不同。在 Vue Router 中,我们可以在路径中使用一个动态字段来实现,我们称之为 _路径参数_

```js
const User = {
Expand All @@ -9,7 +9,7 @@ const User = {

// 这些都会传递给 `createRouter`
const routes = [
// 动态段以冒号开始
// 动态字段以冒号开始
{ path: '/users/:id', component: User },
]
```
Expand Down

0 comments on commit ac445dd

Please sign in to comment.