You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<select @change="onSelect($event.target.value)">
<option v-for="option in options" :value="option.value" :key="option.value">{{option.label}}</option>
</select>
I am passing in the options through propsData just fine in my first test.
Next, I want to trigger a change on the select and choose the second one in the list which will trigger the change event and pass the value to a method I have. I cant find an example of how to do that.