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.

22 lines
377 B

9 years ago
# 卡片模式
- order: 10
9 years ago
用于嵌套在空间有限的容器中。
---
````jsx
import { Calendar } from 'antd';
9 years ago
function onPanelChange(value, mode) {
console.log(value, mode);
9 years ago
}
9 years ago
ReactDOM.render(
<div style={{ width: 290, border: '1px solid #d9d9d9', borderRadius: 4 }}>
9 years ago
<Calendar fullscreen={false} onPanelChange={onPanelChange} />
9 years ago
</div>
, mountNode);
9 years ago
````