Skip to content

Card 卡片

用于数据展示的卡片组件

基础用法

基础用法

测试
<template>
	<LiCard :style="{ maxWidth: '300px' }"> 测试 </LiCard>
</template>
<script setup lang="ts"></script>
<style scope lang="scss"></style>

移入效果

使用show-type控制卡片是否使用移入效果

测试
测试
<template>
	<LiCard :style="{ maxWidth: '300px' }"> 测试 </LiCard>
	<LiCard :style="{ maxWidth: '300px' }" show-type="hover"> 测试 </LiCard>
</template>
<script setup lang="ts"></script>
<style scope lang="scss"></style>

插槽

标题
测试
标题
测试
<template>
	<LiCard header="标题" footer="2023-05-10" :style="{ maxWidth: '300px' }">
		测试
	</LiCard>
	<LiCard header="标题" footer="2023-05-10" :style="{ maxWidth: '300px' }">
		<template #header> 标题 </template>
		<template #default> 测试 </template>
		<template #fotter> 2023-05-10 </template>
	</LiCard>
</template>
<script setup lang="ts"></script>
<style scope lang="scss"></style>

Card Attributes

参数说明类型可选值默认值
show-type移入效果stringnone/hovernone

Card Slots

插槽名说明
-内容
header头部
footer顶部

Released under the MIT License.