mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-27 10:34:26 +08:00
753c01ae18
fix antd.notification
16 lines
251 B
Markdown
16 lines
251 B
Markdown
# 禁用
|
|
|
|
- order: 5
|
|
|
|
选择框的不可用状态。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Datepicker } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Datepicker defaultValue="2015-06-06" disabled={true} />
|
|
, document.getElementById('components-datepicker-demo-disabled'));
|
|
````
|