[Vuejs]-Get the selected value from Laravel Form::select using vue.js

0👍

Just like in angular js ,you can use the event object to get the value like this,

v-on:change="getStatus(event)"

and from the $event object you can get the value like this,

var a=event.target.value;

Leave a comment