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')

相关文章:

  • 2021-10-09
  • 2022-12-23
  • 2021-11-19
  • 2021-09-06
  • 2022-12-23
  • 2021-10-25
  • 2021-12-17
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-07
  • 2022-12-23
  • 2021-04-23
  • 2022-02-03
相关资源
相似解决方案