card 高级卡片

高级卡片组件,在element-plus的 card 组件基础上,支持点击标题栏折叠卡片,右上角扩展按钮

基本使用

测试卡片
Hello world,测试卡片
<template>
  <div>
    <ha-card title="测试卡片" :collapse="false">
      <template #opt>
        <el-button type="text">测试按钮</el-button>
      </template>
      <div>Hello world,测试卡片</div>
    </ha-card>
  </div>
</template>

<script lang="ts" setup>
</script>

<style scoped lang="scss">
</style>
显示代码

组件 API

Attributes 属性

参数说明类型可选值默认值
title卡片的标题String
collapsable是否可收缩Booleantrue / falsetrue
collapse默认是否收缩Booleantrue / falsefalse

Methods 方法

方法名说明参数返回值

Events 事件

事件名说明参数返回值
toggle收缩展开切换事件collapse - 是否收缩void

Slots 插槽

插槽名说明参数
header卡片标题插槽
opt卡片标题栏右侧操作区域插槽