Is there a way to deactivate certain options in v-autocomplete? I tried using the item-disabled
attribute and passing the string value of the option, but it didn't work as expected.
<v-autocomplete
:items="states"
item-text="name"
label="State"
item-disabled="Florida"
></v-autocomplete>