0👍
eventually you can try this
.then(response => {
let new_savings_list = [];
for(saving in response.data.savings){
new_savings_list.push(response.data.savings[saving]);
}
this.savings_list = new_savings_list;```
Source:stackexchange.com