I am currently using vue-select and I would like to create a click event when an item is selected from the select list. I attempted to use
@change="changedValue" @selected="changedLabel"
but it did not work as expected.
Vue Select
<v-select placeholder="Add administrator" class="form-control-select" label="displayName" :options="items"></v-select>
Is there anyone who knows how to trigger this event? Thank you