ant-design/components/time-picker/demo/without-seconds.md

23 lines
334 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
2016-07-26 11:03:44 +08:00
title:
zh-CN: 不展示秒
en-US: Hide the seconds options
2016-03-31 09:40:55 +08:00
---
2016-07-26 11:03:44 +08:00
## zh-CN
不展示秒,也不允许选择。
2016-07-26 11:03:44 +08:00
## en-US
The `seconds` options are hidden and cannot be selected.
````jsx
import { TimePicker } from 'antd';
ReactDOM.render(
<TimePicker defaultValue="12:08:23" format="HH:mm" />
, mountNode);
````