mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-08 12:28:19 +08:00
16 lines
294 B
Markdown
16 lines
294 B
Markdown
|
# 月选择器
|
||
|
|
||
|
- order: 9
|
||
|
|
||
|
使用 MonthPicker 实现月选择器.
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
import { Datepicker } from 'antd';
|
||
|
const MonthPicker = Datepicker.MonthPicker;
|
||
|
ReactDOM.render(
|
||
|
<MonthPicker defaultValue="2015-12" />
|
||
|
, document.getElementById('components-datepicker-demo-month-picker'));
|
||
|
````
|