[Vuejs]-How can I upload a whole folder of PDF files, So that I can skim through each file without having to upload each one of them individually

0👍

The way to do this in Vue is as follows:

  1. Make a input field and attach the event “v-on:input” with the function that will be called when the input is selected.
  2. Don’t forget to add “webkitdirectory mozdirectory” for firefox and chrome browsers.
  3. Inside the function fetch the input query via “document.querySelectorAll(‘input’);“. The information of files will be inside files object.

Leave a comment