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/flexible-content.md

526 B

#### 更灵活的内容展示 可以利用 `Card.Meta` 支持更灵活的内容 #### Customized content You can use `Card.Meta` to support more flexible content.
<template>
<a-card
  hoverable
  style="width: 240px"
>
  <img
    alt="example"
    src="https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png"
    slot="cover"
  />
  <a-card-meta
    title="Europe Street beat">
    <template slot="description">www.instagram.com</template>
  </a-card-meta>
</a-card>
</template>