library/frontend/components/Table/TableTh.vue

18 lines
334 B
Vue
Raw Normal View History

2023-07-13 14:29:43 -07:00
<script setup lang="ts">
2023-07-13 16:56:49 -07:00
defineProps<{actions?: boolean}>()
2023-07-13 14:29:43 -07:00
</script>
<template>
2023-07-13 16:56:49 -07:00
<th :class="{actions: actions}"><slot /></th>
2023-07-13 14:29:43 -07:00
</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>