vue路由参数路由参数汇总,如有错误请多多包涵,指正。记录Vue路由参数查询和params路由参数的两种方式--this.$route.query路由参数查询this.$route.query.id,你可以得到123,这个api不需要配置路由规则this.$route.query.name,你可以得到,zhangsan这个api不需要配置路由规则路由参数--this。$route.params路由参数paramsthis.$route.params.id,取不到123,需要配置路由规则如下:{path:'/home/:id/:name',Component:home}this.$route.params.name,如果获取不到zhangsan,需要配置路由规则如下:{path:'/home/:id/:name',组件:home}