TaTo30 / vue-pdf

PDF component for Vue 3
https://tato30.github.io/vue-pdf/
MIT License
472 stars 65 forks source link

Add option to download the pdf #110

Closed neomib-paylists closed 6 months ago

neomib-paylists commented 6 months ago

Hello, Is there an option to download the pdf? It will be very helpful. Thank you.

senguyen1011 commented 6 months ago

You can implement this yourself! If you add a download attribute on an <a>, it'll create a downloadable link.

<a
  :href="`/public/files/${props.name}.pdf`"
  download
>
  Download Here!
</a>
TaTo30 commented 6 months ago

There are several ways to download files with vanilla js or using other libraries, if you already have the source file (how is supposed to be since this library requires it) you could use @senguyen1011 solution.

Anyways if you have an specific situation let us know and feel free to reopen the issue. 😊