main.js 入口文件:
import axios from 'axios'
Vue.prototype.$http = axios
和使用 vue-resource 一样:
this.$http.get(URL).then(response => {
// success callback
}, response => {
// error callback
})
main.js 入口文件:
import axios from 'axios'
Vue.prototype.$http = axios
和使用 vue-resource 一样:
this.$http.get(URL).then(response => {
// success callback
}, response => {
// error callback
})