<template>
<v-card header="卡片组件">
<div>卡片组件是一个基础组件</div>
</v-card>
</template>
<template>
<v-card header="始终显示阴影" shadow="always">
<div>卡片组件是一个基础组件</div>
</v-card>
</template>
<template>
<v-card header="鼠标移上去显示阴影" shadow="hover">
<div>卡片组件是一个基础组件</div>
</v-card>
</template>
<template>
<v-card
header="鼠标移上去显示阴影"
shadow="hover"
:body-style="{ color: 'skyblue' }"
>
<div>卡片组件是一个基础组件</div>
</v-card>
</template>
<template>
<v-card>
<template #header>这里是自定义header</template>
<div>卡片组件是一个基础组件</div>
</v-card>
</template>