vue项目跑起来报错:* ./cptable in ./node_modules/xlsx-style/dist/cpexcel.js

1,040 阅读1分钟

运行vue项目时,报错如下:

* ./cptable in ./node_modules/xlsx-style/dist/cpexcel.js

image.png

出现上面这种原因,是因为xlsx-style这个库错误所导致的。

根据它的错误提示说的在node_modules/xlsx-style/dist/的这个cpexcel.js这个文件,

找到第807行

image.png

var cpt = require('./cpt' + 'able'); 改成 var cpt = cptable;

即可运行!