14 lines
247 B
Vue
14 lines
247 B
Vue
<script setup>
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<tbody :class="cn('[&_tr:last-child]:border-0', props.class)">
|
|
<slot />
|
|
</tbody>
|
|
</template>
|