美文网首页
不能混合使用import 和module.exports

不能混合使用import 和module.exports

作者: Aklan | 来源:发表于2018-05-30 16:18 被阅读0次

    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
    }
    

    相关文章

      网友评论

          本文标题:不能混合使用import 和module.exports

          本文链接:https://www.haomeiwen.com/subject/excxsftx.html