14 lines
298 B
TypeScript
14 lines
298 B
TypeScript
import { jsPDF } from "jspdf";
|
|
|
|
export function exportToPdf(element: HTMLElement, name: string) {
|
|
const pdf = new jsPDF();
|
|
|
|
pdf.html(element, {
|
|
callback: function (doc) {
|
|
doc.save(name);
|
|
},
|
|
width: 210,
|
|
windowWidth: element.scrollWidth,
|
|
});
|
|
}
|