UNPKG

@aqsc/sjgl-component

Version:

安全生产数据管理基于Element-UI自定义组件

27 lines (18 loc) 535 B
import Vue from 'vue' import App from './App.vue' import '@/styles/index.scss' // global css import '@/assets/common/style.css' // aqscFontIcon Vue.config.productionTip = false import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; Vue.use(ElementUI); import AqscCommon from '@aqsc/common' import '@aqsc/common/lib/aqsc-common.css' Vue.use(AqscCommon) // 导入组件库 import components from './components' // 注册组件库 Vue.use(components) new Vue({ render: h => h(App), }).$mount('#app')