我在Vue-Router4.0.3版本上出现这个问题 因为官方 在2022年8月22日时废除了未定义的传参方式,所以必须使用定义的params。 解决办法: 在配置路由时:path路径上带上传值的key值。比如这样: path:"/Authority:id/:authority*" 那么params:{ id:1, authority:[1,2] } 这里的authority是数组,要在path上这样写。 路由传参的更多信息:https://router.vuejs.org/guide/essentials/route-matching-syntax.html#repeatable-params
标签:传参,Vue,authority,repeatable,params,path,参数 From: https://www.cnblogs.com/HelloQLQ/p/16971722.html