标签:场景 而且 对象 outer ref 方法 引入 xxx router
this.$router.push({
name:'xxx'
params:{
id:id
}
})
接收参数:
this.$route.params.id
不过query使用name来引入也可以传参,使用path也可以
this.$router.push({
path:'/xxx'
query:{
id:id
}
})
接收参数:
this.$route.query.id
看场景需求,一般我开发喜欢使用params方式方式,因为path定义,会存在嵌套路由比较复杂且不好维护,而name比较简洁而且更好维护。
原文地址:https://segmentfault.com/a/1190000017072101
标签:场景 而且 对象 outer ref 方法 引入 xxx router
原文地址:https://www.cnblogs.com/datiangou/p/10124369.html