ant-design/components/card/index.zh-CN.md

27 lines
652 B
Markdown
Raw Normal View History

2016-03-31 14:17:09 +08:00
---
category: Components
type: Data Display
title: Card
subtitle: 卡片
2016-06-17 15:39:05 +08:00
cols: 1
2016-03-31 14:17:09 +08:00
---
2016-02-19 19:35:49 +08:00
通用卡片容器。
## 何时使用
最基础的卡片容器,可承载文字、列表、图片、段落,常用于后台概览页面。
2016-02-20 16:40:18 +08:00
## API
2016-02-19 19:35:49 +08:00
```html
<Card title="卡片标题">卡片内容</Card>
```
| 参数 | 说明 | 类型 | 默认值 |
|----------|----------------|----------|--------------|
2016-04-10 15:38:52 +08:00
| title | 卡片标题 | React.Element | - |
| extra | 卡片右上角的操作区域 | React.Element | - |
| bordered | 是否有边框 | Boolean | true |
| bodyStyle | 内容区域自定义样式 | Object | - |