snowy-designer
Version:
基于Epic-Designer-Pro版本的设计器,可视化开发页面表单
23 lines (22 loc) • 692 B
JavaScript
import { defineComponent as m, computed as p, createBlock as a, openBlock as n, unref as s, withCtx as u, renderSlot as t, createElementBlock as d, Fragment as i, renderList as f } from "vue";
import { Space as h } from "ant-design-vue";
const B = /* @__PURE__ */ m({
__name: "space",
props: {
componentSchema: {}
},
setup(o) {
const r = o, c = p(() => r.componentSchema.children ?? []);
return (e, S) => (n(), a(s(h), null, {
default: u(() => [
t(e.$slots, "edit-node", {}, () => [
(n(!0), d(i, null, f(c.value, (l) => t(e.$slots, "node", { componentSchema: l })), 256))
])
]),
_: 3
}));
}
});
export {
B as default
};