vue 运行时报错: Cannot assign to read only property 'exports' of object 'Object'

用 vue-cli 搭建的 vue 项目,npm run dev 之后一直报错 error:Cannot assign to read only property ‘exports’ of object ‘#< object>’ ,查了好多资料好像是export和import共用了导致不兼容引起的,然后还是不起作用
最后参考了博:https://blog.csdn.net/Gochan_Tao/article/details/88526391
客,完美解决。

解决方法

npm install babel-plugin-transform-es2015-modules-commonjs

然后在 babelrc中配置

{"plugins": ["transform-es2015-modules-commonjs"] }
vue 运行时报错: Cannot assign to read only property 'exports' of object 'Object'_第1张图片
image.png

你可能感兴趣的:(vue 运行时报错: Cannot assign to read only property 'exports' of object 'Object')