1
0
mirror of https://github.com/sahadev/vue-component-creater-ui.git synced 2025-09-28 07:13:21 +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

View File

@@ -59,6 +59,8 @@
// import vant from "../rawComponents/vant";
// import iview from "../rawComponents/iview";
// import quasar from "../rawComponents/quasar";
import raw from "../rawComponents/raw";
import ele from "../rawComponents/element";
export default {
data() {
@@ -176,7 +178,7 @@ export default {
}
},
created() { },
created() { },
mounted() {
this.init();
@@ -202,11 +204,11 @@ export default {
},
components: {
raw: () => import("../rawComponents/raw"),
raw,
// vant,
// iview,
// quasar,
ele: () => import("../rawComponents/element"),
ele,
},
};