0👍
The problem was in data().
data(){
return{
id_list : this.$route.params.list_id,
people: []
}
},
I was not using $route any more so it was undefined and It broke the vue instance.
Source:stackexchange.com
0👍
The problem was in data().
data(){
return{
id_list : this.$route.params.list_id,
people: []
}
},
I was not using $route any more so it was undefined and It broke the vue instance.