I have a method that is making 2 API calls simultaneously. How can I take the results of the API calls and manipulate them in another method within the same Vue component.
buildChart(){
*method where calls would be manipulated"
}
async updateChart() {
this.isLoading = true;
const apiCall1 = await get().then((result) => {
console.log(result);
this.isLoading = false;
});
const apiCall2= await get().then((result) => {
console.log(result);
this.isLoading = false;
});
}