[Vuejs]-Value is not updating with custom select component

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)"
  >

Leave a comment