main.js 527 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12
import Vue from 'vue'


import ElementUI from 'element-ui'

import 'element-ui/lib/theme-chalk/index.css'
import 'es6-promise/auto'

import App from './App.vue'
import RootRouter from './routers'
import store from "./store"

潘际乾 committed
13 14
import '~/assets/css/common.css'

fukai committed
15
import CustomComponent from "./components" 
fukai committed
16
import VueFunc from "./utils/vuefunc"
fukai committed
17

fukai committed
18
window.SUCCESS="AAAAAA"
fukai committed
19

liushikai committed
20
Vue.use(ElementUI, { size: 'small' })
fukai committed
21
Vue.use(CustomComponent)
fukai committed
22
Vue.use(VueFunc)
fukai committed
23 24 25 26 27 28 29

new Vue({
  el: '#app',
  store,
  router:RootRouter,
  render: h => h(App)
})