1
0
mirror of https://github.com/sahadev/vue-component-creater-ui.git synced 2025-06-09 07:22:44 +08:00
2021-04-17 23:39:05 +08:00

16 lines
319 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 Main from "./dist/vcc.umd.min.js";
Vue.use(ElementUI);
Vue.use(AntdUI);
new Vue({
el: "#app",
render: (h) => h(Main),
});