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

355 B

#### 典型卡片 包含标题、内容、操作区域。 #### Basic card A basic card containing a title, content and an extra corner content.
<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>