this.$router.push 传参
时间: 2023-10-19 10:34:13 浏览: 166
this.$router.push 是 Vue Router 提供的方法,用于导航到指定的路由。你可以在 push 方法中传递一个对象参数来设置导航相关的配置。
例如,如果你想导航到名为 "user" 的路由,并传递一个名为 "id" 的参数,你可以这样写:
```javascript
this.$router.push({ path: '/user', query: { id: '123' }})
```
在这个例子中,`path` 属性指定了要导航到的路由路径,`query` 属性用于传递参数。你可以在目标路由中通过 `$route.query.id` 来获取传递的参数值。
除了 `query` 参数,还可以使用 `params` 参数来传递动态路由参数。例如:
```javascript
this.$router.push({ name: 'user', params: { id: '123' }})
```
在这个例子中,`name` 属性指定了要导航到的路由名称,`params` 属性用于传递动态路由参数。你可以在目标路由中通过 `$route.params.id` 来获取传递的参数值。
另外,你还可以使用 `props` 参数来传递 props 给目标组件。例如:
```javascript
this.$router.push({ path: '/user', props: { id: '123' }})
```
在这个例子中,`props` 属性用于传递 props 给目标组件,你可以在目标组件中通过 `props` 来接收传递的值。
以上是一些常见的用法,你可以根据具体需求来灵活使用 `this.$router.push` 方法。
阅读全文