Axios
mounted () {
try {
const response = await axios.get('https://ghibliapi.herokuapp.com/swagger.yaml');
console.log(response);
} catch (error) {
console.error(error);
}
}async function getFilms() {
try {
const response = await axios.get('https://ghibliapi.herokuapp.com/films');
console.log(response);
} catch (error) {
console.error(error);
}
}Parametri
Last updated