diff --git a/components/form.md b/components/form.md index 1f1b493d..5760b6ca 100644 --- a/components/form.md +++ b/components/form.md @@ -347,6 +347,11 @@ export const buttonProps = { */ iconSize: { type: Number, default: 14 }, onClick: { type: [Function, Array] as PropType<(() => any) | (() => any)[]>, default: null }, + + /** + * 如果需要修改默认内置的重置、提交按钮的文本,可以传递这个属性,可选属性 + */ + text: { type: String }, }; ```