[Vuejs]-Html a href="location/file.pdf" download="file.pdf" not working

0👍

Modify the href:

 <a href="@/assets/document/swb-doc.pdf" download="swb_introduction.pdf" target="_self">INTRODUCTION</a>

0👍

Have you tried to download the file by writing the full url into your browser instead? Does it work there?

My guess is that either your path is wrong or that file is not accessible, due to misconfigured rights.

It would help to add your project structure to your question.

Leave a comment