UNPKG

@aqsc/approval-component

Version:

安全生产审批流相关内容、基于Element-UI进行深度自定义组件

21 lines (14 loc) 436 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) new Vue({ render: h => h(App) }).$mount('#app')