首页 > 网络编程 > JavaScript > javascript类库 > vue.js > Vue报错Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#<Object>‘的解决方法
作者:轻轻走143
这篇文章主要给大家介绍了关于Vue报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>' 的解决方法,文中介绍的非常详细,需要的朋友们下面来一起看看吧。
发现问题
运行一下以前的一个Vue+webpack的 vue仿新闻网站 小项目,报错
由于自己vue学习不深入,老是这个报错,找了好久(确切的说是整整一下午^...^)才找到原因 -v-
Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'
点开错误的文件,标注错误的地方是这样的一段代码:
import {normalTime} from './timeFormat'; module.exports={ normalTime };
就是module.exports;
解决方法
同过谷歌查找,和论坛各种搜索:
原因如下:The code above is ok. You can mix require and export. You can‘t mix import and module.exports.
翻译过来就是说,代码没毛病,在webpack打包的时候,可以在js文件中混用require和export。但是不能混用import 以及module.exports
。
因为webpack 2中不允许混用import和module.exports
,
解决办法就是统一改成ES6的方式编写即可.
import {normalTime} from './timeFormat'; export default normalTime;
再次运行:
总结
以上就是这文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如有疑问大家可以留言交流,谢谢大家对脚本之家的支持。
您可能感兴趣的文章:
- Vue项目报错:Uncaught SyntaxError: Unexpected token <
- Vue 报错TypeError: this.$set is not a function 的解决方法
- 解决vue安装less报错Failed to compile with 1 errors的问题
- Vue.js报错Failed to resolve filter问题的解决方法
- vue踩坑记-在项目中安装依赖模块npm install报错
- VUE 项目在IE11白屏报错 SCRIPT1002: 语法错误的解决
- Vue 解决通过this.$refs来获取DOM或者组件报错问题
- Vue——解决报错 Computed property "****" was assigned to but it has no setter.
- vue-cli 打包后提交到线上出现 "Uncaught SyntaxError:Unexpected token" 报错
- Vue实战之项目开发时常见的几个错误汇总