ant-design/components/calendar/index.md

33 lines
1.1 KiB
Markdown
Raw Normal View History

2015-11-11 00:15:12 +08:00
# Calendar
- category: Components
- chinese: 日历
---
可以显示代办事项的日历。
## 何时使用
可以显示内容的日历。
## API
```html
<Calendar getDateData={getDateDataMethod} getMonthData={getMonthDataMethod} />
```
| 参数 | 说明 | 类型 | 默认值 |
|--------------|----------------|----------|--------------|
| value | 展示日期 | gregorian-calendar object | 当前日期 |
2015-11-11 12:22:14 +08:00
| fullscreen | 是否全屏显示 | bool | false |
2015-11-11 00:15:12 +08:00
| getDateData | 获取日的显示数据 | function | 无 |
| getMonthData | 获取月的显示数据 | function | 无 |
| dateCellRendar | 自定义渲染日期单元格 | function | 无 |
| fullscreenDateCellRendar | 自定义渲染日期单元格(全屏) | function | 无 |
| monthCellRendar | 自定义渲染月单元格 | function | 无 |
| locale | 国际化配置 | object | [默认配置](https://github.com/ant-design/ant-design/issues/424) |
<style>
.code-boxes-col-2-1 { width: 100%; }
</style>