不能混合使用import 和module.exports
2018-05-30 本文已影响0人
Aklan
webpack不能混合使用import 和module.exports ,不然会报错Cannot assign to read only property 'exports' of object '#<Object>'
解决方法 使用 export default 替代 module.exports
import fetch from '@/utils/fetch'
const getCommodity = fetch(....
export default {
getCommodity
}