query和params两者都是在Vue路由中传参. 用法: query用path来引入,params只能用name来传递,不能使用path 展示效果:query更像ajax中get请求(会在地址栏显示参数),而params更像post方式传递(不会在地址栏显示参数) query方式传参和接收参数 //传参 this.$router.push({ path:'/xxx' query:{ id:id } }) //接收参数 this.$route.query.id 传参是this.$router,