import Vue from 'vue'
import App from './App'
import router from './router'
import axios from 'axios';
Vue.prototype.$http=axios;//修改内部支持异步axios的好用一点
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
})
---------------------------------
使用axios变成
this.$http.get('url').then(res()=>{
})