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

25 lines
401 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 9
title:
2016-06-19 11:17:09 +08:00
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';
import moment from 'moment';
const MonthPicker = DatePicker.MonthPicker;
ReactDOM.render(
<MonthPicker defaultValue={moment('2015-12', 'YYYY-MM')} />
, mountNode);
````