2

I am working with vue-select@3.1.0.

Btw, when I select another option, how to hook the @change event?

Current codebase like this:

<v-select
  v-model="selected"
  :options="['Vue.js','React']"
  @change="handleChange"
></v-select>
import vSelect from 'vue-select';

export default {
  components: {
    vSelect,
  },
  methods: {
    handleChange() {
      console.log('HELLO');
    }
  },
};

1 Answers1

4

There is no such event in this library.

Vue-select Events.

As an alternative use @input event.

Andrew Vasylchuk
  • 4,671
  • 2
  • 12
  • 30