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>
Source:stackexchange.com