npm i vue-to-pdf --save
<div id="exportPdf" ref="exportPdf"></div>
<input type="button" @click="savePdf" >导出(pdf)</input>
使用该组件需要在main.js中进行配置
import Print from 'vue-to-pdf'
Vue.use(Print) // 注册
方法
//导出(pdf)
savePdf(){
this.$PDFSave(this.$refs.exportPdf, "我的文件");
},

本文介绍了如何在Vue.js项目中实现前端导出PDF功能,并且详细讲解了如何将图片集成到PDF文件中,提供了一种在main.js中配置的方法。
696

被折叠的 条评论
为什么被折叠?



