[Vuejs]-Vue.js 2.0 : Data gotten from backend via ajax can not be shown in view

2👍

I think, you need preserve “this” before axios.get (self=this) and then change
this.todos = response.data;
to
self.todos = response.data;

👤Gena

Leave a comment