#vue3报错 Cannot read properties of null (reading ‘isCE‘)#

场景:使用 npm  安装依赖包的时候,如如安装
npm i xlsx
npm i file-saver

重新运行报错

Cannot read properties of null (reading 'isCE')#

解决办法:

使用的vite + vue 

在vite.config.ts添加如下配置:

 dedupe: [

        'vue'

      ]

#vue3报错 Cannot read properties of null (reading ‘isCE‘)#_第1张图片

 

你可能感兴趣的:(vue.js,javascript,前端)