Blame view

src/main.js 497 Bytes
cfd91107   liuqimichale   first
1
2
3
4
5
  // The Vue build version to load with the `import` command
  // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
  import Vue from 'vue'
  import App from './App'
  import router from './router'
5fcc1352   Andy   add 车主模板 左侧菜单
6
7
  import ElementUI from 'element-ui'
  import '@/icons' // icon
a5f51b80   liuqimichale   完成页面
8
9
10
  require ('./style/reset.css')
  
  
cfd91107   liuqimichale   first
11
  Vue.config.productionTip = false
5fcc1352   Andy   add 车主模板 左侧菜单
12
13
  // set ElementUI lang to EN
  Vue.use(ElementUI)
cfd91107   liuqimichale   first
14
15
16
17
18
19
20
  /* eslint-disable no-new */
  new Vue({
    el: '#app',
    router,
    components: { App },
    template: '<App/>'
  })