Vue的报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<

Posted 前端问题记录

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue的报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<相关的知识,希望对你有一定的参考价值。

 刚刚运行一下以前的一个Vue+webpack的demo,运行之后没有出现想象中的效果,并且报错

Uncaught TypeError: Cannot assign to read only property ‘exports‘ of object ‘#<Object>‘

 

点开错误的文件,标注错误的地方是这样的一段代码:

import {normalTime} from ‘./timeFormat‘;

module.exports
={
  normalTime
};

就是module.exports;

 

百度查不到,google一查果然有。

原因是: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 TypeError: Cannot assign to read only property 'exports' of object '#<的主要内容,如果未能解决你的问题,请参考以下文章

Web前端-Vue控制台报错:Uncaught (in promise) TypeError:

解决vue3 vue-pdf报错Uncaught (in promise) TypeError: h is not a function

解决vue3 vue-pdf报错Uncaught (in promise) TypeError: h is not a function

解决vue3 vue-pdf报错Uncaught (in promise) TypeError: h is not a function

Vue 打包后报错 Uncaught TypeError: Cannot redefine property: $router

Vue 打包后报错 Uncaught TypeError: Cannot redefine property: $router