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

25 lines
403 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';
import moment from 'moment';
const format = 'HH:mm';
ReactDOM.render(
<TimePicker defaultValue={moment('12:08', format)} format={format} />
, mountNode);
````