Best approach for file upload with Vue

2019-08-20 02:24发布

问题:

For the first time Im trying to setup a VueJS view with multiple files upload. For now I have this:

<input type="file" class="custom-file-input" v-model="images">
<span class="custom-file-control"></span>

First of all, do we have good libraries with Vue that solves this ? Should I keep Vue or attempt to use jquery or even pure js?