不能混合使用import 和module.exports

webpack不能混合使用import 和module.exports ,不然会报错Cannot assign to read only property 'exports' of object '#'

解决方法 使用 export default 替代 module.exports

import fetch from '@/utils/fetch'

const getCommodity = fetch(....

export default {
  getCommodity
}

你可能感兴趣的:(不能混合使用import 和module.exports)