You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
371 B
22 lines
371 B
7 years ago
|
---
|
||
|
order: 5
|
||
|
title:
|
||
|
zh-CN: 步长选项
|
||
|
en-US: interval option
|
||
|
---
|
||
|
## zh-CN
|
||
|
|
||
|
可以使用 `hourStep` `minuteStep` `secondStep` 按步长展示可选的时分秒。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Show stepped options by `hourStep` `minuteStep` `secondStep`.
|
||
|
|
||
|
````jsx
|
||
|
import { TimePicker } from 'antd';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<TimePicker minuteStep={15} secondStep={10} />
|
||
|
, mountNode);
|
||
|
````
|