@pusdn/pgz-comp-elep
Version:
PGZ组件库,Vue3 中基于Element-plus二次封装基础组件文档
20 lines (19 loc) • 508 B
TypeScript
export interface TModuleFormProps {
handleType?: "edit" | "desc";
isShowHeader?: boolean;
titleSlot?: boolean;
isShowBack?: boolean;
isGoBackEvent?: boolean;
btnSaveBind?: Record<string, any>;
btnCancelBind?: Record<string, any>;
isTabMargin?: boolean;
tabMarginNum?: number;
footer?: any;
title?: string;
subTitle?: string;
tabs?: Array<{
key: string;
title: string;
}>;
submit?: (form: Record<string, any>) => Promise<boolean>;
}