library/frontend/components/Table/TableThead.vue

13 lines
167 B
Vue

<script setup lang="ts">
</script>
<template>
<thead><slot /></thead>
</template>
<style lang="postcss">
thead {
@apply border-b border-pink-400/80;
}
</style>