“HTML2PDF” Ответ

HTML2PDF

function generatePDF() {
  // Choose the element that our invoice is rendered in.
  const element = document.getElementById("invoice");
  // Choose the element and save the PDF for our user.
  html2pdf()
    .set({ html2canvas: { scale: 4 } })
    .from(element)
    .save();
}
Blue-eyed Barracuda

HTML2PDF

npm i html2pdf.js@0.9.0
Wicked Wombat

Ответы похожие на “HTML2PDF”

Смотреть популярные ответы по языку

Смотреть другие языки программирования