mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
25 lines
494 B
Markdown
25 lines
494 B
Markdown
---
|
||
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);
|
||
````
|