src/main.js中的一些引用
import Vue from 'vue' import App from './App.vue' import router from './router' import store from './store' import axios from 'axios' import promise from 'es6-promise' import './tools/flexible' import './tools/kl' import 'scrolling-element' promise.polyfill() Vue.config.productionTip = false axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'
Vue.prototype.axios = axios
new Vue({ router, store, render: h => h(App) }).$mount('#app')
扫码关注我们
微信号:SRE实战
拒绝背锅 运筹帷幄
Vue.prototype.axios = axios
new Vue({ router, store, render: h => h(App) }).$mount('#app')

更多精彩