#xlsx-style

开发问题:vue运行报错.cptable in ./node_modules/xlsx-style...

2024年11月14日 by emanjusaka 阅读 26 点赞 0

开发问题:vue运行报错.cptable in ./node_modules/xlsx-style...

在引入了 xlsx-style 组件的 Vue 项目中可能会出现错误提示:`./cptable in ./node_modules/xlsx-style/dist/cpexcel.js`。针对这个问题,有两种解决方案:一是修改源码,需要在`./node_modules/xlsx-style/dist/cpexcel.js`文件中进行特定修改;二是配置`vue.config.js`文件,通过添加 externals 配置来解决。推荐使用第二种方案,因为第一种修改源码每次重新安装都需再次修改,且不具通用性,而第二种方案配置后可以通用,避免了频繁修改的麻烦。

阅读全文…

标签: vue , xlsx-style

发布在 开发问题记录