0👍
You’re not emitting any event from your component. Because of this, v-model watches for change
events that come in, but those events are never emitted by your component, so nothing happens.
<select
class="
...
"
@change="$emit('change', $event)"
>
Source:stackexchange.com