this.$router.push可以带参数么
时间: 2023-11-14 12:09:35 浏览: 85
Vue中this.$router.push参数获取方法
5星 · 资源好评率100%
可以的,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'
}
})
```
阅读全文