1. Install vue-to-PDF plug-in
npm i vue-to-pdf --save
Copy the code
2. Import the plug-in in main.js
import vueToPdf from 'vue-to-pdf';
Vue.use(vueToPdf);
Copy the code
3. Export method
/* @des: front-end export PDF @params: domObj: dom object to export pdfName: file name to export */
savePdf() {
this.$PDFSave(domObj, pdfName);
},
Copy the code
4. Precautions
- When exporting, you need to adjust the style of the exported DOM object, such as the margin interval, otherwise it is easy to truncate the content in pagination