[Vuejs]-Font color v-select item cannot be changed

0👍

You could use item slot then you could define its style :

 <v-select
        :items="dataOption"
        label="item"
        solo
        class="header-select"
        :dark="$colorMode.value === 'night'"
#item="{item}"     
 >
<span style="color: #ffd54f;">{{item.label}}</span>
</v-select>

Leave a comment