vue-resource是Vue提供的Ajax请求插件
安装
npm install vue-resource
引入
import VueResource from 'vue-resource'
Vue.use(VueResource)
使用
// GET /someUrl
this.$http.get('/someUrl').then(response => {
// get body data
this.someData = response.body;
}, response => {
// error callback
});