3👍
✅
The configuration documentation for vue-resource states:
Note that for the root option to work, the path of the request must be relative. This will use this the root option:
Vue.http.get('someUrl')
while this will not:Vue.http.get('/someUrl')
.
So, try to remove the leading /
in your call to the api:
this.$http.get('api/datageneration/environment')
Source:stackexchange.com