I try like this : https://codepen.io/positivethinking639/pen/OJVRjGL?editors=1010
My code :
<v-form>
<v-file-input multiple
v-model="documents"
label="File input"></v-file-input>
<v-btn color="success" @click="submit()">
test
</v-btn>
</v-form>
but it does not works
if I upload file and click button test, the formdata empty on the console
How can I solve this problem?