import axios from 'axios'
export default {
data() {
return {
results: []
}
},
mounted() {
axios.get('http://gallery.dev.webant.ru/api/photos?page=1').then( response => {
this.results = response.data
} )
},
}