Здесь мои данные:
data: function(){
return {
contas: [{id: 3,
nome: "Conta de telefone",
pago: false,
valor: 55.99,
vencimento: "22/08/2016"}] //debug test value
};
},
И вот мой запрос:
beforeMount() {
axios.get('http://127.0.0.1/api/bills')
.then(function (response) {
console.log("before: " + this.contas);
this.contas = response.data;
console.log("after: " + this.contas);
});
},
Проблема в том, что я не могу получить доступ к this.contas
из axios.get()
. Я пробовал Vue.set(this, 'contas', response.data);
и window.listaPagarComponent.contas = response.data;
без успеха.
Моя консоль показывает:
before: undefined
after: [object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Но Vue Devtools показывает только:
contas: Array[1]
0: Object
id: 3
nome: "Conta de telefone"
pago: false
valor: 55.99
vencimento: "22/08/2016"
Здесь мой полный код.