Good news.
Starting with version 2.0.0.-beta.8 v-file-input is available in Vuetify. You're supposed to use it like:
EDIT (SNIPPET ADDITION):
A basic usage for handling an image file can be implemented as follows.
Thanks to @Begueradj pointing there is even no need for handling @change event for tracking the file change and making the example even more precise:
new Vue({
el: '#app',
vuetify: new Vuetify(),
data: () => ({
file: null,
imageUrl: null
}),
methods: {
onUpload() {
console.log(this.file)
}
}
})
Upload