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.

21 lines
359 B

---
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';
export default () => <TimePicker minuteStep={15} secondStep={10} />;
```