mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-19 11:58:41 +08:00
17 lines
259 B
Markdown
17 lines
259 B
Markdown
# 时间选择
|
|
|
|
- order: 4
|
|
|
|
准确到秒的时间选择面板。
|
|
|
|
---
|
|
|
|
````jsx
|
|
var Datepicker = antd.datepicker;
|
|
|
|
React.render(
|
|
<Datepicker showTime={true} format="yyyy/MM/dd HH:mm:ss" />
|
|
, document.getElementById('components-datepicker-demo-time'));
|
|
````
|
|
|