vue中的router模块会报错Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'

这是因为不许混用import和module.exports,

解决办法是改为 ,即

clipboard.png

改为

clipboard.png

但是改了以后还会报错 "path" is required in a route configuration
这是因为有重复的path,在router.js中进行修改

clipboard.png

改为重定向的,就不会和原有的/home下的模块重复

还有必须改为routes.concat(file.default),因为在用module.exports时是routes.concat(file)


小鱼儿
58 声望3 粉丝