boa noite, peço ajuda, estou preso no erro abaixo:
Cannot read property 'get' of undefined"
App.vue
created() {
let promise = this.$http.get('http://localhost:3000/v1/fotos')
promise.then(res => {
res.json().then(fotos => this.fotos = fotos);
});
Importacao no main.js
import VueResource from 'vue-resource'
Vue.use(VueResource)
Não consigo sair daqui.