You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
898 B

---
order: 2
title:
zh-CN: 卡片模式
en-US: Card
---
## zh-CN
9 years ago
用于嵌套在空间有限的容器中。
## en-US
Nested inside a container element for rendering in limited space.
```tsx
import { Calendar } from 'antd';
import type { CalendarMode } from 'antd/lib/calendar/generateCalendar';
3 years ago
import type { Dayjs } from 'dayjs';
import React from 'react';
const App: React.FC = () => {
3 years ago
const onPanelChange = (value: Dayjs, mode: CalendarMode) => {
console.log(value.format('YYYY-MM-DD'), mode);
};
return (
<div className="site-calendar-demo-card">
<Calendar fullscreen={false} onPanelChange={onPanelChange} />
</div>
);
};
export default App;
```
5 years ago
```css
.site-calendar-demo-card {
width: 300px;
border: 1px solid #f0f0f0;
border-radius: 2px;
5 years ago
}
```
<style>
[data-theme="dark"] .site-calendar-demo-card {
border: 1px solid #303030;
}
</style>