How to change the icon and color of the v-file-input component in Vuetify ?
For v-text-field and other component, the slot approach works, but for this component I can not get it work:
<div id="app">
<v-app id="inspire">
<v-file-input show-size label="File input">
<template v-slot:prepend>
<v-tooltip bottom>
<template v-slot:activator="{ on }">
<v-icon v-on="on" color="yellow lighten-3">
notes
</v-icon>
</template>
</v-tooltip>
</template>
</v-file-input>
</v-app>
</div>
v-file-inputcomponent, gives the result you're searching for, or do you only want to color the icon?