22 lines
491 B
JavaScript
22 lines
491 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import store from './store'
|
|
import '@/elementui'
|
|
import ElementUI from 'element-ui'
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
import 'normalize.css/normalize.css'
|
|
import '@/assets/style/global.css'
|
|
import '@/assets/style/flex.css'
|
|
import md5 from 'js-md5'
|
|
Vue.prototype.$md5 = md5
|
|
|
|
Vue.use(ElementUI)
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: (h) => h(App),
|
|
}).$mount('#app') |