You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 rivejä
517 B

  1. import Vue from 'vue'
  2. import '../theme/index.css' // 自定义主题包
  3. import ElementUI from 'element-ui'
  4. import App from './App.vue'
  5. import router from './router'
  6. import store from './store'
  7. import '@/styles/index.scss' // global css
  8. import './icons' // icon
  9. import './premission' // 路由守卫
  10. Vue.config.productionTip = false
  11. Vue.use(ElementUI)
  12. import myComponents from 'code-brick-zj'
  13. Vue.use(myComponents)
  14. import './components/index'
  15. new Vue({
  16. router,
  17. store,
  18. render: (h) => h(App)
  19. }).$mount('#app')