[Vuejs]-Pulling data from my rest api into my VueJS component's array data property

0👍

The issue is in your for loop, you are not accessing the response array.

for (let key in data.response) {
    resultArray.push(data.response[key])
}

Leave a comment