JavaScript
- 1 ответ
- 0 вопросов
1
Вклад в тег
getUsers(){
this.appleUsers()
.then(result => {
this.allUsers.push(...result);
this.renderUsers();
})
.catch(err => console.error(err));
}