ant-design/components/date-picker/demo/locale.md
2016-06-19 11:17:09 +08:00

29 lines
555 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
order: 10
title:
zh-CN: 国际化
en-US: Locale
---
## zh-CN
通过 `locale` 配置时区、语言等, 默认支持 `en_US``zh_CN`。
## en-US
Use locale to set the properties like time zone, language and etc. en_US, zh_CN are supported by default.
````jsx
import { DatePicker } from 'antd';
import enUS from 'antd/lib/date-picker/locale/en_US';
const customLocale = {
timezoneOffset: 0 * 60,
firstDayOfWeek: 0,
minimalDaysInFirstWeek: 1,
};
ReactDOM.render(<DatePicker locale={{ ...enUS, ...customLocale }} />, mountNode);
````