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.
34 lines
749 B
34 lines
749 B
<cn>
|
|
#### 栅格卡片
|
|
在系统概览页面常常和栅格进行配合。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Card in column
|
|
Cards usually cooperate with grid column layout in overview page.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<div style="background-color: #ececec; padding: 20px;">
|
|
<a-row :gutter="16">
|
|
<a-col :span="8">
|
|
<a-card title="Card title" :bordered=false>
|
|
<p>card content</p>
|
|
</a-card>
|
|
</a-col>
|
|
<a-col :span="8">
|
|
<a-card title="Card title" :bordered=false>
|
|
<p>card content</p>
|
|
</a-card>
|
|
</a-col>
|
|
<a-col :span="8">
|
|
<a-card title="Card title" :bordered=false>
|
|
<p>card content</p>
|
|
</a-card>
|
|
</a-col>
|
|
</a-row>
|
|
</div>
|
|
</template>
|
|
```
|