Guest User

Untitled

a guest
Jan 22nd, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. import * as jsPDF from 'jspdf';
  2. import { autoTable } from 'jspdf-autotable';
  3.  
  4. var doc = new jsPDF();
  5. doc.autoTable({head: head, body: body, startY: 80 });
  6. doc.save('Test.pdf');
  7.  
  8. "scripts": [
  9. "../node_modules/jspdf/dist/jspdf.min.js",
  10. "../node_modules/jspdf-autotable/dist/jspdf.plugin.autotable.js"
  11. ],
  12.  
  13. import * as jsPDF from 'jspdf';
  14. import 'jspdf-autotable';
  15. .
  16. .
  17. .
  18. jsPDF: any; //important
Add Comment
Please, Sign In to add comment