Hi,
I have this following code
<div
v-for="(selected, index) in data"
:key="index"
>
<vue-select
v-model="data[index]"
:data="dataOptions"
placeholder="Select"
>
<vue-option
v-for="option in dataOptions"
:key="option.value"
:value="option.value"
:label="option.label"
/>
</vue-select>
</div>
However, when I clear the data[index] for the corresponding index, the data is updated correctly but the label displayed stays the same and gives the illusion that the data wasn't cleared. Is there a way to update the label when the data in the v-model object is changed?