[Vuejs]-Onchange pass selected option in input vue

2👍

This v-select’s onChange function accept a parameter which is a array contains the selected options.

By the way, your can use this codes, open Chrome console to debugger the value of ‘a’,’b’,’c’.

onChange(a,b,c) {
      debugger;
      console.log(a);
}

Leave a comment