vue跳转页面传递参数
时间:2019-08-16 16:24:38
收藏:0
阅读:318
上述传递一个参数
this.$router.push({
path:‘/o_management‘,
query:{
Id:this.mapArry[a.target.Uh.vid].Id
}
})
上述传递多个参数
this.$router.push({
path:‘/o_management‘,
query:{
uid:row.Id,
state:6
}
})
接收参数:
this.$route.query.Id
原文:https://www.cnblogs.com/ting0527/p/11364451.html
评论(0)