ant-design/components/timepicker/demo/disabled.md

16 lines
233 B
Markdown
Raw Normal View History

2015-11-18 12:14:26 +08:00
# 禁用
2015-11-16 23:11:41 +08:00
- order: 4
禁用时间选择。
---
````jsx
import { Timepicker } from 'antd';
2015-11-16 23:11:41 +08:00
ReactDOM.render(
<Timepicker defaultValue="12:08:23" disabled />
2015-11-16 23:11:41 +08:00
, document.getElementById('components-timepicker-demo-disabled'));
````