params与query router文件下index.js里面,是这么定义路由的: { path: '/about', name: 'About', component: About } 用query传参可以直接写在path路由地址里,也可写在json对象中 //query,用路径跳转 this.$router.push({ path:'/about', query:{ name:'about', code:111 } }) 接收参数 this.$route.query 是{name: "ab…