vue3 router.push 传参
时间: 2023-11-14 13:07:49 浏览: 120
vue-router3.0版本中 router.push 不能刷新页面的问题
5星 · 资源好评率100%
在 Vue3 中,使用 router.push 进行路由跳转时,可以通过第二个参数传递参数。例如:
```
this.$router.push({ path: '/home', query: { id: 123 }})
```
其中,`query` 对象中的属性会被作为查询参数添加到 URL 中。在目标组件中,可以通过 `$route.query` 访问这些参数。
阅读全文