本文主要是介绍vue引入插件Cannot assign to read only property 'exports' of object '#Object',希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
webpack可以使用require和export ,但是不能混合使用import 和module.exports ,不然会报错Cannot assign to read only property 'exports' of object '#<Object>'
举个例子:
我在用vue使用swiper插件时,一直报错这个错
这个完全没问题啊,一直报着个错,有种砸电脑的触动
然后再github说什么transform-runtime
adds import
to your files
于是我把package.json的 "babel-plugin-transform-runtime": "^6.0.0",删了,把node_modules也删了,重新npm install
发现还报错
于是babelrc的插件一项的transfrom-runtime也删了
npm run dev 搞定
这篇关于vue引入插件Cannot assign to read only property 'exports' of object '#Object'的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!