Blame view

src/main.js 537 Bytes
e7ab2c09a   alexYang   权限部分
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  import Vue from 'vue'
  import App from './App'
  import router from './router'
  import api from './http'
  import i18n from './i18n'
  import store from './store'
  import global from '@/utils/global'
  import ElementUI from 'element-ui'
  import 'element-ui/lib/theme-chalk/index.css'
  import 'font-awesome/css/font-awesome.min.css'
  
  Vue.use(ElementUI)  // 注册使用Element
  Vue.use(api)  // 注册使用API模块
  
  Vue.prototype.global = global // 挂载全局配置模块
  
  new Vue({
    el: '#app',
    i18n,
    router,
    store,
    render: h => h(App)
  })