mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-03 08:12:26 +08:00
Initial commit
This commit is contained in:
20
frontend/src/components/ui/table-body.vue
Normal file
20
frontend/src/components/ui/table-body.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user