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.
30 lines
696 B
30 lines
696 B
7 years ago
|
<cn>
|
||
|
#### 内部卡片
|
||
|
可以放在普通卡片内部,展示多层级结构的信息
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Inner card
|
||
|
It can be placed inside the ordinary card to display the information of the multilevel structure
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<a-card title="Card title">
|
||
|
<p style="fontSize: 14px;color: rgba(0, 0, 0, 0.85); marginBottom: 16px;fontWeight: 500"
|
||
6 years ago
|
>
|
||
|
Group title
|
||
|
</p>
|
||
7 years ago
|
<a-card title="Inner card title">
|
||
|
<a href="#" slot="extra">More</a>
|
||
|
Inner Card content
|
||
|
</a-card>
|
||
6 years ago
|
<a-card title="Inner card title" :style="{ marginTop: '16px' }">
|
||
7 years ago
|
<a href="#" slot="extra">More</a>
|
||
|
Inner Card content
|
||
|
</a-card>
|
||
|
</a-card>
|
||
|
</template>
|
||
|
|
||
6 years ago
|
```
|