chore: 应该为可选

This commit is contained in:
dap 2024-10-17 19:05:45 +08:00
parent 4a393a1920
commit bec201b95b

View File

@ -291,7 +291,7 @@ export interface FormRenderProps<
export interface ActionButtonOptions extends VbenButtonProps { export interface ActionButtonOptions extends VbenButtonProps {
content?: string; content?: string;
// 原生类型 // 原生类型
htmlType: 'button' | 'reset' | 'submit'; htmlType?: 'button' | 'reset' | 'submit';
show?: boolean; show?: boolean;
} }