mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-03 00:02:28 +08:00
21 lines
334 B
Vue
21 lines
334 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
import { computed } from 'vue'
|
|
|
|
interface Props {
|
|
class?: string
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
|
|
const bodyClass = computed(() =>
|
|
cn('[&_tr:last-child]:border-0', props.class)
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<tbody :class="bodyClass">
|
|
<slot />
|
|
</tbody>
|
|
</template>
|