Como ficaria o codigo se usa-se async e await ives de then encadeados?
Como ficaria o codigo se usa-se async e await ives de then encadeados?
Olá, Delano! Como vai?
O código ficaria assim:
// alurapic/src/App.vue
// código anterior omitido
async created() {
try {
const res = await this.$http.get('http://localhost:3000/v1/fotos');
const fotos = await res.json();
this.fotos = fotos;
} catch (err) {
console.log(err);
}
}
// código posterior omitido
Espero ter ajudado!