[Vuejs]-Download multiple files via Axios and .zip them

0๐Ÿ‘

  1. Let the link () be directly what you are getting from axios (axios.get(url))

  2. To download multiple file in one zip you could let the server pack them and provide public link to download (we can elaborate on this if you need to)

  3. Again use that public link from the server to download the zip

  4. enter image description here
    Use download_url and put it in a

Leave a comment