Files
Message-Push-Nest/web/src/components/ui/table/TableHeader.vue
T

18 lines
333 B
Vue
Raw Normal View History

2025-08-10 14:32:24 +08:00
<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<thead
data-slot="table-header"
:class="cn('[&_tr]:border-b', props.class)"
>
<slot />
</thead>
</template>