// código anterior omitido
created() {
this.$http.get('http://localhost:3000/v1/fotos')
.then(function(res) {
return res.json();
})
.then(function(fotos) {
this.fotos = fotos, // <---------- o contexto de this não é a própria função?
}, function(err) {
console.log(err);
});
}
// código