snowy-designer
Version:
基于Epic-Designer-Pro版本的设计器,可视化开发页面表单
29 lines (28 loc) • 474 B
JavaScript
const e = {
component: () => import("./card.js"),
config: {
attribute: [
{
field: "label",
label: "标题",
type: "input"
},
{
field: "componentProps.hidden",
label: "隐藏",
type: "switch"
}
]
},
defaultSchema: {
label: "卡片布局",
type: "card",
children: []
},
groupName: "布局",
icon: "icon--epic--wysiwyg-rounded",
sort: 900
};
export {
e as default
};