I am getting this error when I am trying to load image in vue using vuetify.
Error:
TypeError: Cannot read property 'files' of undefined"
The component:
<v-file-input
accept="image/*"
label="File input"
@change="uploadData($event)"
></v-file-input>
The method:
methods: {
uploadData(event) {
let file = event.target.files[0];
console.log(file);
}
}