vue路由两种传参的区别
//定义路由 { path:"/detail", name:"detail", component:home } //这种做法是错误的,这是query传参的方式 this.$router.push({ path:"/detail", params:{ name:'nameValue', code:10011 } }); //这是正确的,这是params传参的方式 this.$router.push({ name:"/detail", params:{ name:'nameValue', code:10011 } });