Files
Aether/frontend/src/components/ui/table-cell.vue

21 lines
348 B
Vue
Raw Normal View History

2025-12-10 20:52:44 +08:00
<script setup lang="ts">
import { cn } from '@/lib/utils'
import { computed } from 'vue'
interface Props {
class?: string
}
const props = defineProps<Props>()
const cellClass = computed(() =>
cn('p-4 align-middle [&:has([role=checkbox])]:pr-0', props.class)
)
</script>
<template>
<td :class="cellClass">
<slot />
</td>
</template>