this.$http vueJs not set this.$http vueJs not set ajax ajax

this.$http vueJs not set


$http.get is for Vue Resource. Make sure you are pulling that in properly. i.e., add vue-resource to your package.json, then npm install, then...

var Vue = require('vue');Vue.use(require('vue-resource'));

Also, make sure your root path is set up properly.

Vue.http.options.root = '/your-root-path';

Hope it helps! :-)