Using the v-file-input component from Vuetify, I am able to upload images with the following code:
<v-file-input
label="Image"
filled
accept="image/png, image/jpeg, image/bmp"
prepend-icon="mdi-camera"
v-model="image"
></v-file-input>
When I console.log the v-model image, I receive a File object like this:
File {name: "img.png", lastModified: 1588256009000, lastModifiedDate: Thu Apr 30 2020, webkitRelativePath: "", size: 53258, …}
name: "img.png"
lastModified: 1588256008000
lastModifiedDate: Thu Apr {}
webkitRelativePath: ""
size: 53259
type: "image/png"
....
Now, I am wondering how I can display this Object in the current component or another child component?