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