Vue and pdfkit generates an error: not constructor

Vue and pdfkit generates an error: not constructor

我在我的 Vue.js 应用程序中安装了 pdfkit 然后我创建了一个 vue 组件来开始创建 PDF 但是在我的第一次测试中我得到了一个错误:

组件脚本:

const pdfkit =  require('pdfkit');
var doc = new pdfkit;

但这会产生错误:

pdfkit is not a constructor

如何解决?感谢您的任何建议

尝试使用

将其导入到您的组件中
import pdfkit from 'pdfkit'

然后使用

创建您的文档
let doc = new pdfkit();