Na aula 4/05 o tutorial precisa de algumas alterações:
De:
const autores = ApiService.ListaAutores();
consolg.log(autores);
Para:
const autores = ApiService.ListaAutores();
console.log(autores);
De:
ApiService.ListaAutores();
then(res => console.log(res.data));
Para:
ApiService.ListaAutores().then(res => console.log(res.data));