vue中的router模块会报错Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'
这是因为不许混用import和module.exports,
解决办法是改为 ,即
改为
但是改了以后还会报错 "path" is required in a route configuration
这是因为有重复的path,在router.js中进行修改
改为重定向的,就不会和原有的/home下的模块重复
还有必须改为routes.concat(file.default),因为在用module.exports时是routes.concat(file)
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。