I want to bind a class to the selected value in my v-select. Currently I have the following:
<v-select :options="optionList"
:value="activeQuote ? 'Loading ...' : null !== activeOption && activeOption.label !== 'City' ? null : activeOption"
:placeholder="Please select a choice"
:disabled="activeQuote">
<template slot="option" slot-scope="option">
<div :class="option.active != 0 ? '_inactive' : ''">{{option.label}}</div>
</template>
</v-select>
However, the slot class only applies to values in the list, but not the selected value.
How can I also apply the class of '_inactive' to the selected value?