ant-design/components/date-picker/demo/month-picker.md

23 lines
351 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 9
2016-06-19 11:17:09 +08:00
title:
zh-CN: 月选择器
en-US: MonthPicker
2016-03-31 09:40:55 +08:00
---
2016-06-19 11:17:09 +08:00
## zh-CN
使用 `MonthPicker` 实现月选择器。
## en-US
You can get a month selector by using `MonthPicker`.
````jsx
import { DatePicker } from 'antd';
const MonthPicker = DatePicker.MonthPicker;
ReactDOM.render(
<MonthPicker defaultValue="2015-12" />
, mountNode);
````