ant-design/components/calendar/demo/basic.md

32 lines
593 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title:
zh-CN: 基本
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-11-11 00:15:12 +08:00
## zh-CN
2015-11-13 18:20:22 +08:00
一个通用的日历面板,支持年/月切换。
2015-11-11 00:15:12 +08:00
## en-US
A basic calendar component with Year/Month switch.
```tsx
2015-11-11 00:15:12 +08:00
import { Calendar } from 'antd';
import type { CalendarMode } from 'antd/lib/calendar/generateCalendar';
import type { Moment } from 'moment';
2022-05-21 22:14:15 +08:00
import React from 'react';
2015-11-11 00:15:12 +08:00
const App: React.FC = () => {
const onPanelChange = (value: Moment, mode: CalendarMode) => {
console.log(value.format('YYYY-MM-DD'), mode);
};
2015-11-11 00:15:12 +08:00
return <Calendar onPanelChange={onPanelChange} />;
};
export default App;
2019-05-07 14:57:32 +08:00
```