mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-03 16:22:27 +08:00
23 lines
400 B
Vue
23 lines
400 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { cn } from '@/lib/utils'
|
||
|
|
import { computed } from 'vue'
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
class?: string
|
||
|
|
}
|
||
|
|
|
||
|
|
const props = defineProps<Props>()
|
||
|
|
|
||
|
|
const tableClass = computed(() =>
|
||
|
|
cn('w-full caption-bottom text-sm', props.class)
|
||
|
|
)
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="relative w-full overflow-auto">
|
||
|
|
<table :class="tableClass">
|
||
|
|
<slot />
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</template>
|