第一步 安装下载插件
npm install html2canvas jspdf --save
第二步 给vue原型上面挂载一个下载页面pdf的方法;在项目工具方法存放文件夹utils中创建文件,代码如下
// 导出页面为PDF格式
import html2Canvas from 'html2canvas'
import JsPDF from 'jspdf'
export default{
install (Vue, options) {
= function () {
var title =
html2Canvas(('#pdfDom'), {
allowTaint: true
}).then(function (canvas) {
let contentWidth =
let contentHeight =
let pageHeight = contentWidth / 592.28 * 841.89
let leftHeight = contentHeight
let position = 0
let imgWidth = 595.28
let imgHeight = 592.28 / contentWidth * contentHeight
let pageData = ('image/jpeg', 1.0)
let PDF = new JsPDF('', 'pt', 'a4')
if (leftHeight < pageHeight) {
(pageData, 'JPEG', 0, 0, imgWidth, imgHeight)
} else {
while (leftHeight > 0) {
(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
leftHeight -= pageHeight
position -= 841.89
if (leftHeight > 0) {
()
}
}
}
(title + '.pdf')
}
)
}
}
}
第三步 在文件进行导入
import htmlToPdf from '@/components/utils/htmlToPdf'
// 使用()方法就会调用工具方法中的install方法
(htmlToPdf)
第四步 页面中直接使用
<template>
<div>
<div >我是要下载的pdf的格式的文件</div>
<button @click="xiazai">下载pdf</button>
</div>
</template>
<script>
export default {
data() {
return {
htmlTitle: '页面导出PDF的名称'
}
},
methods: {
xiazai() {
(())
}
}
}
</script>