JS-приложение:
Код: Выделить всё
import axios from 'axios';
export default {
name: 'home',
components: {
ImageCard
},
data() {
return {
images: []
}
},
methods: {
fetchImages = () => {
axios
.get("https://foodish-api.herokuapp.com/api/images/pizza")
.then(res => {
console.log(res);
this.setState({ images: res.data.message });
})
.catch(err => console.log(err));
this.images = fetchImages()
});
}
Код: Выделить всё
[*]
Подробнее здесь: https://stackoverflow.com/questions/691 ... wrong-here
Мобильная версия