CardMode.vue 366 Bytes
<script setup lang="ts">
  import {} from '/@/components/';
</script>

<template>
  <CardList :params="params" :api="demoListApi" @get-method="getMethod" @delete="handleDel">
    <template #header>
      <Button type="primary" color="error"> 按钮1 </Button>
      <Button type="primary" color="success"> 按钮2 </Button>
    </template>
  </CardList>
</template>