<v-file-input
accept="image/*"
label="File input"
v-model="chosenFile"
></v-file-input>
I'm working with Vue.js. How can I access the content of the files?
var reader = new FileReader();
var img = new Image();
reader.readAsDataURL(this.chosenFile)
When using FileReader, nothing is displayed.