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

727 B

#### 典型卡片 包含标题、内容、操作区域。 可通过设置size为`default`或者`small`,控制尺寸 #### Basic card A basic card containing a title, content and an extra corner content. Supports two sizes: `default` and `small`.
<template>
  <div>
    <a-card title="Default size card" style="width: 300px">
      <a href="#" slot="extra">more</a>
      <p>card content</p>
      <p>card content</p>
      <p>card content</p>
    </a-card>
    <br>
    <a-card size="small" title="Small size card" style="width: 300px">
      <a href="#" slot="extra">more</a>
      <p>card content</p>
      <p>card content</p>
      <p>card content</p>
    </a-card>
  </div>
</template>