mirror of
https://github.com/sahadev/vue-component-creater-ui.git
synced 2025-06-07 21:54:05 +08:00
16 lines
309 B
JavaScript
16 lines
309 B
JavaScript
import Vue from "vue";
|
|
import ElementUI from "element-ui";
|
|
import "element-ui/lib/theme-chalk/index.css";
|
|
|
|
import AntdUI from "ant-design-vue";
|
|
import "ant-design-vue/dist/antd.css";
|
|
import APP from "./src/App.vue";
|
|
|
|
Vue.use(ElementUI);
|
|
Vue.use(AntdUI);
|
|
|
|
new Vue({
|
|
el: "#app",
|
|
render: (h) => h(APP),
|
|
});
|
|
|