## result为后端响应数据 onGetData(result){ console.log(result) this.$router.push({name:"showData",params:{"reponsData":result}}); }
$route
在组件中定义好接受数据的属性
在路由文件中将传递给路由的数据绑定到组件对应的属性中
## 组件文件 export default { props:['reponsData'], } ## 路由文件 {path:"/show/",name:"showData",component:showDataPage,props:(route)=>({reponsData:route.params.reponsData})},
路由组件传递参数https://router.vuejs.org/zh/guide/essentials/passing-props.html#%E5%AF%B9%E8%B1%A1%E6%A8%A1%E5%BC%8F
Last updated 4 years ago