0
votes

Can we have a outlined custom color in vuetify autocomplete when onfocus. I tried to alter some classes using inspect elements. But nothing worked. Please help

1

1 Answers

0
votes

As far as I can see you need just assign custom color attribute value. Have I understood you correct?

<div id="app">
    <v-app id="inspire">
        <div>
            <v-autocomplete color="#fa0" 
                            label="Components" 
                            :items="components" />
        </div>
    </v-app>
</div>