I'm trying to use the v-file-input component to upload an image to an s3 bucket but when I try to get the photo it comes up as an empty object
<v-file-input
v-model='test'
type='file'
></v-file-input>
When I call 'this.test' as the file to upload it shows up as an empty file though doing 'this.test.name' shows the name of the file... I'm sure this is something super simple and I'm overthinking it hard, I've tried reading the file with 'FileReader' with readAsDataUrl but that just reads it as a base64, I've also tried FormData to no avail