效果预览:
代码流程:首先在utils文件夹下创建htmlToPdf的js工具文件,然后在main.js中注册引用
htmlToPdf.js
// 导出页面为PDF格式
import html2Canvas from 'html2canvas'
import JsPDF from 'jspdf'
export default {
install(Vue, options) {
Vue.prototype.getPdf = function (id) {
var title = '导出试卷'
if (id === null || id === undefined) {
id = '#pdfDom'
}
html2Canvas(document.querySelector(id), {
allowTaint: true,
}).then(function (canvas) {
const contentWidth = canvas.width
const c