vue中的router模塊會報錯Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'vue
這是由於不準混用import和module.exports,ui
解決辦法是改成 ,即spa
改成router
可是改了之後還會報錯 "path" is required in a route configuration
這是由於有重複的path,在router.js中進行修改ip
改成重定向的,就不會和原有的/home下的模塊重複it
還有必須改成routes.concat(file.default),由於在用module.exports時是routes.concat(file)io