通过VueRouter来实现组件之间的跳转:参数的传递,具体内容如下
login ---用户名--->main
①明确发送方和接收方
②配置接收方的路由地址 {path:'/myTest',component:TestComponent} --> {path:'/myTest/:id',component:TestComponent}
③接收方获取传递来的数据 this.$route.params.id
④跳转的时候,发送参数
this.$router.push('/myTest/20')
代码:
原文链接:/vue/35336.html