mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
23 lines
282 B
Markdown
23 lines
282 B
Markdown
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 禁用
|
|
en-US: Disabled
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
选择框的不可用状态。
|
|
|
|
## en-US
|
|
|
|
A disabled state of the `DatePicker`.
|
|
|
|
````jsx
|
|
import { DatePicker } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<DatePicker defaultValue="2015-06-06" disabled />
|
|
, mountNode);
|
|
````
|