1
0
mirror of https://github.com/sahadev/vue-component-creater-ui.git synced 2025-12-17 07:54:15 +08:00

基本逻辑可实现

This commit is contained in:
Shangbin
2021-04-11 22:33:19 +08:00
parent e5a2ed4484
commit d51f6b0a27
15 changed files with 1354 additions and 1212 deletions

16
main.js Normal file
View File

@@ -0,0 +1,16 @@
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/vue-component-creater-ui.common.js";
Vue.use(ElementUI);
Vue.use(AntdUI);
new Vue({
el: "#app",
render: (h) => h(Main),
});