获取参数方式有两种: 1.params2.query 第一种方式: params this.$router.push({name:'Hello',params:{name:'zs',age:'22'}});name:组件中的命名params 中两个参数分别为name,age 跳转 hello这个组件,获取参数值: var name = this.$route.params.name; var age = this.$route.params.age; 这样就会获取到相应参数 浏览器地址为 htt