this.$router.push可以带参数么
时间: 2023-11-14 14:09:35 浏览: 87
vue两组件间值传递 $router.push实现方法
可以的,this.$router.push可以带参数。你可以在路由跳转时通过query或params传递参数。其中,query传递的参数会显示在url中,而params传递的参数则不会显示在url中。
例如,使用query传递参数的代码如下:
```
this.$router.push({
path: '/example',
query: {
id: '123'
}
})
```
使用params传递参数的代码如下:
```
this.$router.push({
name: 'example',
params: {
id: '123'
}
})
```
阅读全文