I have this v-select :
<v-select
multiple
v-model="group.structures"
:options="filter"
label="name"
@input="changed"
></v-select>
When I get the attribute of my function "changed", I got an array with all selected values when I add or remove an item from my v-select.
changed(value) {
console.log(value); // Return an array with all items in (group.structures).
}
I don't want to get all the array but only the selected/removed value. Is there any way to get the selected value?
Thanks.