[Vuejs]-Internal link deleted after downloading PDF with html2pdf in Vue JS

0👍

I believe there should be enableLinks option available in html2pdf library. Something like this:

Ref: https://ekoopmans.github.io/html2pdf.js/#options

html2pdf(element, {
    enableLinks: true
    // ... other options
});

0👍

Thank you for reply.
After looking online and check different code i didn’t find any solution. Normal links are working but not internal links even with enableLinks!

I am not sure it’s possible.

Leave a comment