mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-10 03:32:26 +08:00
Initial commit
This commit is contained in:
20
frontend/src/components/ui/table-header.vue
Normal file
20
frontend/src/components/ui/table-header.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<script setup lang="ts">
|
||||
import { cn } from '@/lib/utils'
|
||||
import { computed } from 'vue'
|
||||
|
||||
interface Props {
|
||||
class?: string
|
||||
}
|
||||
|
||||
const props = defineProps<Props>()
|
||||
|
||||
const headerClass = computed(() =>
|
||||
cn('[&_tr]:border-b', props.class)
|
||||
)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<thead :class="headerClass">
|
||||
<slot />
|
||||
</thead>
|
||||
</template>
|
||||
Reference in New Issue
Block a user