//定义路由 { 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 } });
query: //query传参在浏览器地址栏中显示参数//params在浏览器上隐藏参数
params:
原文地址:https://www.cnblogs.com/zbx-boke/p/9651766.html
时间: 2024-10-03 08:54:24