axios请求失败(就没开始跨域请求)
我在 main.js 内引用 axios
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(axios,VueAxios)
Vue.prototype.$http=axios //$http 名字是自定义,也可以使用$axios $a
Vue.config.productionTip = false
new Vue({
router,
render: h => h(App)
}).$mount('#app')
console.log() 没有日志输出。 注释掉 this.$http 能够显示出第26行的打印。
