ant-design-vue/antdv-demo/docs/card/demo/meta.md

881 B

#### 支持更多内厚配įŊŽ ä¸€į§æ”¯æŒå°éĸ、头像、标éĸ˜å’Œæčŋ°äŋĄæ¯įš„åĄį‰‡ã€‚ #### Support more content configuration A Card that supports `cover`, `avatar`, `title` and `description`.
<template>
  <a-card hoverable style="width: 300px">
    <img
      slot="cover"
      alt="example"
      src="https://gw.alipayobjects.com/zos/rmsportal/JiqGstEfoWAOHiTxclqi.png"
    />
    <template slot="actions" class="ant-card-actions">
      <a-icon key="setting" type="setting" />
      <a-icon key="edit" type="edit" />
      <a-icon key="ellipsis" type="ellipsis" />
    </template>
    <a-card-meta title="Card title" description="This is the description">
      <a-avatar
        slot="avatar"
        src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png"
      />
    </a-card-meta>
  </a-card>
</template>