路由传参
// 传参
this.$router.push({ path: '/stu/info', query: { id: stuId }})
// 参数接收
this.$route.query.id
注意事项
- 区分 router 和 route
- 区分replace 和 push
// 传参
this.$router.push({ path: '/stu/info', query: { id: stuId }})
// 参数接收
this.$route.query.id
注意事项