mirror of
https://github.com/ZeroCatDev/ClassworksKVAdmin.git
synced 2025-10-22 03:23:10 +00:00
17 lines
281 B
Vue
17 lines
281 B
Vue
<script setup>
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<tbody
|
|
data-slot="table-body"
|
|
:class="cn('[&_tr:last-child]:border-0', props.class)"
|
|
>
|
|
<slot />
|
|
</tbody>
|
|
</template>
|