2017-06-26 13:38:24 +08:00
|
|
|
import Vue from 'vue'
|
2017-08-30 17:42:06 +08:00
|
|
|
import ElementUI from 'element-ui'
|
|
|
|
import 'element-ui/lib/theme-default/index.css'
|
2017-09-15 13:45:09 +08:00
|
|
|
import locale from 'element-ui/lib/locale/lang/en'
|
2017-06-26 13:38:24 +08:00
|
|
|
import App from './App'
|
|
|
|
import router from './router'
|
|
|
|
import store from './store'
|
2017-08-30 17:42:06 +08:00
|
|
|
import '@/icons' // icon
|
|
|
|
import '@/permission' // 权限
|
2017-06-26 13:38:24 +08:00
|
|
|
|
2017-09-15 13:45:09 +08:00
|
|
|
Vue.use(ElementUI, { locale })
|
2017-06-26 13:38:24 +08:00
|
|
|
|
2017-08-30 17:42:06 +08:00
|
|
|
Vue.config.productionTip = false
|
2017-06-26 13:38:24 +08:00
|
|
|
|
|
|
|
new Vue({
|
|
|
|
el: '#app',
|
|
|
|
router,
|
|
|
|
store,
|
|
|
|
template: '<App/>',
|
|
|
|
components: { App }
|
|
|
|
})
|