2017-03-26 18:15:31 +00:00
|
|
|
import Vue from 'vue'
|
|
|
|
import ElementUI from 'element-ui'
|
2018-05-06 15:39:33 +00:00
|
|
|
import locale from 'element-ui/lib/locale/lang/en'
|
2017-03-26 18:15:31 +00:00
|
|
|
import 'element-ui/lib/theme-default/index.css'
|
|
|
|
import './utils/less/custom.less'
|
|
|
|
|
|
|
|
import App from './App.vue'
|
|
|
|
import router from './router'
|
2017-03-27 17:08:04 +00:00
|
|
|
import 'whatwg-fetch'
|
2017-03-26 18:15:31 +00:00
|
|
|
|
2018-05-06 15:39:33 +00:00
|
|
|
Vue.use(ElementUI, { locale })
|
2017-03-26 18:15:31 +00:00
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
|
|
|
new Vue({
|
|
|
|
el: '#app',
|
|
|
|
router,
|
|
|
|
template: '<App/>',
|
|
|
|
components: { App }
|
|
|
|
})
|