方案一: getDescribe(id) { // 直接调用$router.push 实现携带参数的跳转 this.$router.push({ path: `/describe/${id}`, }) 方案一,需要对应路由配置如下: { path: '/describe/:id', name: 'Describe', component: Describe } 很显然,需要在path中添加/:id来对应 $router.push 中path携带的参数.在子组件中可以使用来获取传递的参数值. th…