diff --git a/components/form/demo/disabled.md b/components/form/demo/disabled.md deleted file mode 100644 index c6347d264c..0000000000 --- a/components/form/demo/disabled.md +++ /dev/null @@ -1,50 +0,0 @@ -# 禁用状态 - -- order: 7 - -1) 单独为输入控件设置 `disabled` 属性; - -2) 为 `
` 设置 `disabled` 属性,可以禁用 `
` 中包含的所有控件。 - ---- - -````jsx -import { Row, Col, Button, Input, Form } from 'antd'; -const FormItem = Form.Item; - -ReactDOM.render( -
- - - - -
- 禁用的 fieldset - -

大眼萌 minion

-
- - - - - - - - -
-
-, mountNode); -````