mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
423 B
423 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
使用 format
属性,可以自定义你需要的日期显示格式,如 yyyy/MM/dd
。
en-US
By using format
, you can customize the format(such as yyyy/MM/dd
) the date is displayed in.
import { DatePicker } from 'antd';
ReactDOM.render(
<DatePicker defaultValue="2015/01/01" format="yyyy/MM/dd" />
, mountNode);