Vue的方式 Vue的 query方式 ①this.$route.query.companyId ( companyId 为参数的名称 是$route 不是 $router) Vue的 params方式 ②this.$route.push({path:'/home',name:'/homeView',params:{userName:'zhangsan',userAge:23 }}) 想要获取参数信息,这里path属性可选,但是无name属性就无法获取params内容 ,使用上面的编程时导航,也…