Uncaught TypeError: Cannot assign to read only property 'exports' of object '

Uncaught TypeError: Cannot assign to read only property 'exports' of object '#

错误

在这里插入图片描述

解决方案

太久没启动 Vue,启动不知道咋的就报错了
据说是 exportimport 共用了导致不兼容引起的

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

.babelrc 文件内新增

{“plugins”: [“transform-es2015-modules-commonjs”] }

在这里插入图片描述

发布了102 篇原创文章 · 获赞 375 · 访问量 8万+

猜你喜欢

转载自blog.csdn.net/qq_37143673/article/details/102932947