ant-design/components/datepicker/demo/disabled.md
afc163 753c01ae18 ES6 syntax for demo code
fix antd.notification
2015-10-28 20:55:49 +08:00

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'));
````