I am showing the following view, where I have a list of selects to be able to select the desired program, but the @change event of the v-select is not firing, it only works with a normal select, but I do not use a normal select because I need the search functionality that v-select provides, any ideas how to make the @change event work?
Code from view
<v-select :id="
selectPs${item['id']}
" label="name"
:options="programsToSelect" @change="signalChangeProgram($event, item['
view