前端报错 Cannot assign to read only property ‘exports‘ of object ‘#<Object>‘
1. 前端报错:Cannot assign to read only property 'exports' of object '#<Object>'2. 报错原因:webpack打包的时候,可以在js文件中混用require和export。但是不能混用import 以及module.exports。3. 解决方法那么,js文件写法注意:一定要配对使用require和module.ex
·
1. 前端报错:
Cannot assign to read only property 'exports' of object '#<Object>'
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.参考文章
更多推荐
已为社区贡献1条内容
所有评论(0)