[Vuejs]-Data cannot be found in promise axios.all

0👍

Instead of aliasing this consider using the fat arrow function to retain the scope of this inside of the anonymous callback:

.then(axios.spread((tasksResponse, keywordsResponse,getTasksResponse,discResponse) => {
  //this is now scoped correctly.
}))

Leave a comment