18 lines
272 B
Vue
18 lines
272 B
Vue
|
<script setup lang="ts">
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<th><slot /></th>
|
||
|
</template>
|
||
|
|
||
|
<style lang="postcss">
|
||
|
th {
|
||
|
@apply py-3.5 px-3;
|
||
|
@apply font-bold text-left;
|
||
|
|
||
|
@apply first-of-type:ps-0;
|
||
|
@apply last-of-type:ps-3.5 last-of-type:pe-0 last-of-type:relative;
|
||
|
}
|
||
|
</style>
|