kempsteven / vue-html2pdf

vue-html2pdf converts any vue component or element into PDF, vue-html2pdf is basically a vue wrapper only and uses html2pdf.js behind the scenes.
https://www.npmjs.com/package/vue-html2pdf
MIT License
440 stars 74 forks source link

How to open new tab when generating pdf #73

Closed rzpjunior closed 3 years ago

rzpjunior commented 3 years ago

Hello,

Is there any documentation on how to open new browser tab to preview the PDF when i click generate PDF button?

bad-mushroom commented 3 years ago

Not sure about opening a new tab but there is an option to open a preview modal:

<vue-html2pdf
     :preview-modal="true"
>
rzpjunior commented 3 years ago

[SOLVED] I just did this to beforeDownload function :

window.open(pdf.output('bloburl'), '_blank');