.then(resp => {
app.myinfo = resp.data;
})
<tr v-for="truck in myinfo" class="trucks">
var app = this;
app.myinfo = [{'id': 1, 'name': 'test'}];
axios.get('/api/get-trucks')
.then(response => {
// app.myinfo = [{'id': 1, 'name': 'test'}];
})
.catch(function (resp) {
console.log(resp);
alert("Не удалось загрузить компании");
});
// app.myinfo = [{'id': 2, 'name': 'test'}];
var app = this;
axios.get('/api/get-trucks')
.then(function (resp) {
app.myinfo = [{'id': 1, 'name': 'test'}];
})
.catch(function (resp) {
console.log(resp);
alert("Не удалось загрузить компании");
});
console.log(resp.data);