Files
Aether/frontend/src/components/ui/table-row.vue
2025-12-10 20:52:44 +08:00

24 lines
387 B
Vue

<script setup lang="ts">
import { cn } from '@/lib/utils'
import { computed } from 'vue'
interface Props {
class?: string
}
const props = defineProps<Props>()
const rowClass = computed(() =>
cn(
'border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted',
props.class
)
)
</script>
<template>
<tr :class="rowClass">
<slot />
</tr>
</template>