#vue

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

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

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

在引入了 xlsx-style 组件的 vue 项目中,运行时报错"./cptable in ./node_modules/xlsx-style/dist/cpexcel.js"。解决方案有两种:一是修改源码,在807行将 "var cpt = require('./cpt' + 'able')" 改成 "var cpt = cptable";二是配置vue.config.js,在externals中加入{ './cptable': 'var cptable' }。推荐第二种方案,因为第一种每次重新安装需重新修改,而第二种配置后通用。

阅读全文…

标签: vue , xlsx-style

发布在 开发问题记录