import { uuid } from "../_utils/utils"; export default [{ componentName: 'CardPro', title: 'CardPro', schema: { componentName: 'CardPro', props: { actionButtons: [ { key: uuid(), button: { type: "JSSlot", value: { componentName: "Button", props: { children: "主按钮", type: "primary" }, }, } }, { key: uuid(), button: { type: "JSSlot", value: { componentName: "Button", props: { children: "副按钮", type: "default" }, }, } } ] } } }]