前端报错 Cannot assign to read only property ‘exports‘ of object ‘#<Object>‘

1. 前端报错:

Cannot assign to read only property 'exports' of object '#'
 
  

前端报错 Cannot assign to read only property ‘exports‘ of object ‘#<Object>‘_第1张图片

2. 报错原因:

webpack打包的时候,可以在js文件中混用require和export。但是不能混用import 以及module.exports。

3. 解决方法

那么,js文件写法注意:一定要配对使用require和module.exports以及import和export default。

4. 其他方法

如果还不能解决问题,看看这篇文章有没有帮助:
https://www.cnblogs.com/hao-1234-1234/p/11493295.html

5.参考文章

http://www.mamicode.com/info-detail-1694072.html

你可能感兴趣的:(前端)