tft-fe/src/main.js

24 rindas
517 B
JavaScript

2023-01-03 09:33:30 +08:00
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)
2023-01-11 14:23:09 +08:00
import myComponents from 'code-brick-zj'
Vue.use(myComponents)
2023-01-03 09:33:30 +08:00
import './components/index'
new Vue({
router,
store,
render: (h) => h(App)
}).$mount('#app')