gpt4 book ai didi

javascript - 使用 jspdf 和 Vue.js 生成 pdf

转载 作者:可可西里 更新时间:2023-11-01 01:37:25 24 4
gpt4 key购买 nike

我是 Vue.js 的新手,我正在尝试生成 PDF,但我不知道该怎么做。

这是我的:

import * as jsPDF  from "jspdf"

export default {

props: ['id'],


methods: {
pdf () {
const doc = new jsPDF()
}
}

}

错误:

Property or method "pdf" is not defined on the instance but referenced during render

最佳答案

首先将 PDF 库导入为:

import jsPDF from 'jspdf'

然后简单地实例化对象并给它内容:

methods: {
createPDF () {
let pdfName = 'test';
var doc = new jsPDF();
doc.text("Hello World", 10, 10);
doc.save(pdfName + '.pdf');
}
}

请务必阅读 documentation更多

关于javascript - 使用 jspdf 和 Vue.js 生成 pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47668546/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com