Alban denica
Alban denica

Reputation: 137

download a local file, on button click

Hi there I'm trying to download a local file on button click in VueJs

<a href="./documentation.docx" download>Download</a>

I have the documentation in the same folder as index

But when I'm trying to download, its saying No File

Upvotes: 0

Views: 1984

Answers (1)

kissu
kissu

Reputation: 46764

This should work properly as you've written it. It's essentially comes down to the given path, try something like this structure and this code (with an absolute path):

<a href="/azuki.jpg" download> download stuff </a>

enter image description here

Also, check the official documentation page here: https://cli.vuejs.org/guide/html-and-static-assets.html#the-public-folder

Upvotes: 3

Related Questions