вот код html
<select class="selectpicker" name="car[automodel_id]" disabled title="{{Lang::get('nav.car_model')}}">
<option v-for="models in models" value="@{{model.id}}">@{{model.title}}</option>
</select>
и код vue.js
Vue.http.headers.common['X-CSRF-TOKEN'] = document.querySelector('meta[name="_token"]').getAttribute('content');
new Vue({
el : 'nav',
data :{
models : [],
},
methods :{
brands : function ( e ) {
this.$http.post(Website.href + 'cars/models/' + e.target.value, function (obj){
this.models = obj.models;
});
}
}
});
задача состоит в том, чтобы после response вывести данные в селект