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.
16 lines
325 B
16 lines
325 B
9 years ago
|
# 日期格式
|
||
|
|
||
|
- order: 1
|
||
|
|
||
|
使用 `format` 属性,可以自定义你需要的日期显示格式,如 `yyyy/MM/dd`。
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
import { DatePicker } from 'antd';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<DatePicker defaultValue="2015/01/01" format="yyyy/MM/dd" />
|
||
|
, document.getElementById('components-date-picker-demo-formatter'));
|
||
|
````
|