ag-element-ui/examples/main.js

18 lines
379 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Vue from 'vue'
import App from '../src/App.vue'
//基于element组件封装引入element组件库
import { Input } from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(Input);
// 导入组件库
import erp_element_ui from '../packages'
Vue.config.productionTip = false
Vue.use(erp_element_ui)
new Vue({
render: h => h(App),
}).$mount('#app')