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 myComponents from 'code-brick-zj' Vue.use(myComponents) import './components/index' new Vue({ router, store, render: (h) => h(App) }).$mount('#app')