froala / wysiwyg-editor

The next generation Javascript WYSIWYG HTML Editor.
https://www.froala.com/wysiwyg-editor
Other
5.3k stars 675 forks source link

Can't getPDF to work in React #4536

Open dmt0 opened 2 years ago

dmt0 commented 2 years ago

The only doc that I found is this: https://froala.com/wysiwyg-editor/examples/export-pdf/

It suggests to import a lib through a script tag. Would be great if I could just import it as an NPM dependency.

doktordirk commented 7 months ago

npm i html2pdf.js or suposably more stable npm i html2pdf.js@0.9.0

and enable in froala config.

import html2pdf from 'html2pdf.js';

// ....

const froalaConfig = {
   html2pdf: html2pdf,
}