NyllRE / nuxt-file-storage

Easy solution to store files in your nuxt apps. Be able to upload files from the frontend and recieve them from the backend to then save the files in your project.
https://nuxt.com/modules/nuxt-file-storage
MIT License
64 stars 8 forks source link

How to make a multiload #21

Open pir0zh0k opened 4 days ago

pir0zh0k commented 4 days ago

I have a need to do a sequential download of several files. Is there a possibility to implement such a thing? So that the files are not replaced, but added one by one to the array.

NyllRE commented 21 hours ago

I will implement a fix for it to not delete them one by one but in the mean time I suggest you take the useFileStorage.ts composables file and put it in your project and in the handleFileInput composable remove the first line files.value.splice(0)

pir0zh0k commented 14 hours ago

I will implement a fix for it to not delete them one by one but in the mean time I suggest you take the useFileStorage.ts composables file and put it in your project and in the handleFileInput composable remove the first line files.value.splice(0)

Thank's, bro