Skip to content

Commit

Permalink
chore: main.js fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sendya committed Mar 26, 2019
1 parent 77cf85c commit d822ccf
Showing 1 changed file with 27 additions and 24 deletions.
51 changes: 27 additions & 24 deletions src/main.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
import '@babel/polyfill'
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store/'
import { VueAxios } from '@/utils/request' // axios 不建议引入到 Vue 原型链上

import './core/use'
import bootstrap from './core/bootstrap'
import '@/permission' // permission control
import '@/utils/filter' // global filter

Vue.config.productionTip = false

Vue.use(VueAxios, router)

new Vue({
router,
store,
created () {
bootstrap()
},
render: h => h(App)
}).$mount('#app')
// ie polyfill
import '@babel/polyfill'

import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store/'
import { VueAxios } from './utils/request'

import bootstrap from './core/bootstrap'
import './core/use'
import './permission' // permission control
import './utils/filter' // global filter

Vue.config.productionTip = false

// mount axios Vue.$http and this.$http
Vue.use(VueAxios)

new Vue({
router,
store,
created () {
bootstrap()
},
render: h => h(App)
}).$mount('#app')

0 comments on commit d822ccf

Please sign in to comment.