shadcn-vue/apps/www/src/lib/registry/default/ui/table/TableBody.vue
2023-09-03 01:38:53 +08:00

12 lines
230 B
Vue

<script setup lang="ts">
import { cn } from '@/lib/utils'
const props = defineProps<{ class?: string }>()
</script>
<template>
<tbody :class="cn('[&_tr:last-child]:border-0', props.class)">
<slot />
</tbody>
</template>