mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-17 02:18:07 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
508 B
508 B
order | title | ||||
---|---|---|---|---|---|
4 |
|
zh-CN
TimePicker 浮层中的列会随着 format
变化,当略去 format
中的某部分时,浮层中对应的列也会消失。
en-US
While part of format
is omitted, the corresponding column in panel will disappear, too.
import { TimePicker } from 'antd';
import moment from 'moment';
const format = 'HH:mm';
export default () => <TimePicker defaultValue={moment('12:08', format)} format={format} />;