12 lines
197 B
Vue
12 lines
197 B
Vue
<script setup>
|
|
defineOptions({ name: "TableHead" });
|
|
</script>
|
|
|
|
<template>
|
|
<th
|
|
class="h-12 px-4 text-left align-middle font-medium text-muted-foreground"
|
|
>
|
|
<slot />
|
|
</th>
|
|
</template>
|