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.
|
|
|
---
|
|
|
|
order: 10
|
|
|
|
title:
|
|
|
|
zh-CN: 卡片模式
|
|
|
|
en-US: Card
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
用于嵌套在空间有限的容器中。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Nested inside a container element for rendering in limited space.
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Calendar } from 'antd';
|
|
|
|
|
|
|
|
function onPanelChange(value, mode) {
|
|
|
|
console.log(value, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div style={{ width: 290, border: '1px solid #d9d9d9', borderRadius: 4 }}>
|
|
|
|
<Calendar fullscreen={false} onPanelChange={onPanelChange} />
|
|
|
|
</div>
|
|
|
|
, mountNode);
|
|
|
|
````
|