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
}
网友评论