avatar

目录
webpack报错记录

webpack报错:Cannot assign to read only property ‘exports’ of object ‘#

原因是: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。
于是查了一下代码,在自己的main.js中有这一段代码:

Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

import selector from ‘../packages/selector‘;
import alert from ‘../packages/alert‘;
const components=[
selector,
alert,
]
const install=function(Vue,option={}){
components.map(component => {
Vue.component(component.name, component);
})
Vue.prototype.$alert=alert;
Vue.prototype.$info=alert.error;
Vue.prototype.$error=alert.error;
}

module.exports={
version:‘0.0.1‘,
install,
}

这段代码就是在最开始使用了import语句,但是最后使用了module.exports语句。所以就报错了。
改正一下:

Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

var selector = require(‘../packages/selector‘);
var alert=require(‘../packages/alert‘);
const components=[
selector,
alert,
]
const install=function(Vue,option={}){
components.map(component => {
Vue.component(component.name, component);
})
Vue.prototype.$alert=alert;
Vue.prototype.$info=alert.error;
Vue.prototype.$error=alert.error;
}

module.exports={
version:‘0.0.1‘,
install,
}

所以提醒我,以后一定要配对使用require和module.exports以及import和export default。
不要混用,省得出问题。

文章作者: HJY
文章链接: https://hjy-dev.github.io/2020/02/24/webpack%E6%8A%A5%E9%94%99%E8%AE%B0%E5%BD%95/
版权声明: 本博客所有文章除特别声明外,均采用 Apache License 2.0 许可协议。转载请注明来自 Kiven Blog
打赏
  • 微信
    微信
  • 支付寶
    支付寶

评论