使用vue-resource请求数据的步骤
1.需要安装模块 vue-resource 模块
cnpm install vue-resource --save
2.在main.js 引入
import VueResource from 'vue-resource'
3.Vue.use(VueResource)
4.在组件里面直接使用
this.$http.get(地址).then(function(){
})
使用vue-resource请求数据的步骤
1.需要安装模块 vue-resource 模块
cnpm install vue-resource --save
2.在main.js 引入
import VueResource from 'vue-resource'
3.Vue.use(VueResource)
4.在组件里面直接使用
this.$http.get(地址).then(function(){
})