美文网首页
vue 运行时报错: Cannot assign to read

vue 运行时报错: Cannot assign to read

作者: Do_Du | 来源:发表于2019-08-07 09:23 被阅读0次

    用 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"] }
    
    image.png

    相关文章

      网友评论

          本文标题:vue 运行时报错: Cannot assign to read

          本文链接:https://www.haomeiwen.com/subject/zuundctx.html