ant-design/components/date-picker/demo/locale.md
2016-04-25 19:34:01 +08:00

25 lines
494 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: 国际化
---
通过 `locale` 配置时区、语言等, 默认支持 `en_US``zh_CN`。
````jsx
import { DatePicker } from 'antd';
import enUS from 'antd/lib/date-picker/locale/en_US';
const App = React.createClass({
render() {
const customLocale = {
timezoneOffset: 0 * 60,
firstDayOfWeek: 0,
minimalDaysInFirstWeek: 1,
};
return <DatePicker locale={{ ...enUS, ...customLocale }} />;
}
});
ReactDOM.render(<App />, mountNode);
````