Blame view

src/main.js 1.21 KB
80a28914e   吉鹏   init
1
  import Vue from 'vue'
d7d9c38c2   Adam   auto commit the c...
2
  import Cookies from 'js-cookie'
80a28914e   吉鹏   init
3

d7d9c38c2   Adam   auto commit the c...
4
5
6
7
  import 'normalize.css/normalize.css' // a modern alternative to CSS resets
  
  import Element from 'element-ui'
  import './styles/element-variables.scss'
80a28914e   吉鹏   init
8
9
10
11
12
13
  
  import '@/styles/index.scss' // global css
  
  import App from './App'
  import store from './store'
  import router from './router'
d7d9c38c2   Adam   auto commit the c...
14
15
16
17
18
19
  import i18n from './lang' // internationalization
  import './icons' // icon
  import './permission' // permission control
  import './utils/error-log' // error log
  
  import * as filters from './filters' // global filters
80a28914e   吉鹏   init
20
21
22
23
24
25
26
27
28
29
30
31
32
  
  /**
   * If you don't want to use mock-server
   * you want to use MockJs for mock api
   * you can execute: mockXHR()
   *
   * Currently MockJs will be used in the production environment,
   * please remove it before going online ! ! !
   */
  if (process.env.NODE_ENV === 'production') {
    const { mockXHR } = require('../mock')
    mockXHR()
  }
d7d9c38c2   Adam   auto commit the c...
33
34
35
36
37
38
39
40
41
  Vue.use(Element, {
    size: Cookies.get('size') || 'medium', // set element-ui default size
    i18n: (key, value) => i18n.t(key, value)
  })
  
  // register global utility filters
  Object.keys(filters).forEach(key => {
    Vue.filter(key, filters[key])
  })
80a28914e   吉鹏   init
42
43
44
45
46
47
  Vue.config.productionTip = false
  
  new Vue({
    el: '#app',
    router,
    store,
d7d9c38c2   Adam   auto commit the c...
48
    i18n,
80a28914e   吉鹏   init
49
50
    render: h => h(App)
  })