21 lines
453 B
JavaScript
21 lines
453 B
JavaScript
|
import Vue from 'vue'
|
||
|
import '../theme/index.css' // 自定义主题包
|
||
|
import ElementUI from 'element-ui'
|
||
|
import App from './App.vue'
|
||
|
import router from './router'
|
||
|
import store from './store'
|
||
|
import '@/styles/index.scss' // global css
|
||
|
import './icons' // icon
|
||
|
import './premission' // 路由守卫
|
||
|
|
||
|
Vue.config.productionTip = false
|
||
|
Vue.use(ElementUI)
|
||
|
|
||
|
import './components/index'
|
||
|
|
||
|
new Vue({
|
||
|
router,
|
||
|
store,
|
||
|
render: (h) => h(App)
|
||
|
}).$mount('#app')
|