v-file-input is a new component that appeared in Vuetify v2.
<v-file-input multiple label="File input"></v-file-input>
The default behavior shows a prepended icon:

Is there a way to get rid of it ?
I just tried this and it worked:
<v-file-input multiple label="File input" prepend-icon=""></v-file-input>
<v-file-input multiple label="File input" prepend-icon=""></v-file-input>
You can disable (or change) it globally in whole app by initializing Vuetify like this:
new Vuetify({
icons: {
values: {
file: ''
},
}
})
See the docs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With