library/frontend/components/Table/index.vue
2023-07-13 21:44:04 -07:00

25 lines
242 B
Vue

<script setup lang="ts">
</script>
<template>
<table>
<slot />
</table>
</template>
<style lang="postcss">
table {
@apply w-full;
}
.actions {
@apply text-end;
& > * {
@apply me-3;
@apply last:me-0;
}
}
</style>