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.
ant-design-vue/components/card/demo/basic.md

21 lines
355 B

<cn>
#### 典型卡片
包含标题、内容、操作区域。
</cn>
<us>
#### Basic card
A basic card containing a title, content and an extra corner content.
</us>
```html
<template>
<a-card title="Card Title">
<a href="#" slot="extra">more</a>
<p>card content</p>
<p>card content</p>
<p>card content</p>
</a-card>
</template>
```