library/frontend/components/Table/index.vue
2023-07-13 17:03:49 -07:00

23 lines
238 B
Vue

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