Is there any on-select, on-remove properties in v-autocomplete in vuetify? I would like to handle those events manually. I tried @change, but in this case i don't know which one is added/removed.
<v-autocomplete
:items="states"
item-text="name"
label="State"
@change="pushOrRemoveStates()"
multiple
></v-autocomplete>
In the @change, i am calling method pushOrRemoveStates. i can select multiple options in autocomplete, so in here i would like to handle onSelect & onRemove of the options, i have to do few operations once we select/remove the options. Its not possible using @change because i don't know weather option is selected or removed, because in both cases @change will execute.