基础用法

卡片名称
列表内容1
列表内容2
列表内容3
<Card header="卡片名称">
<div v-for="item in 3">列表内容{{ item }}</div>
</Card>

配置模板标题

列表内容1
列表内容2
列表内容3

<template >
  <Card>
    <template #header>
        <a>卡片名称</a>
        <Button>配置</Button>
    </template>
    <div v-for="item in 3">列表内容{{ item }}</div>
  </Card>
</template>