library/frontend/components/Table/index.vue

24 lines
238 B
Vue
Raw Normal View History

2023-07-13 14:29:43 -07:00
<script setup lang="ts">
</script>
<template>
<table><slot /></table>
</template>
2023-07-13 17:03:49 -07:00
<style lang="postcss">
2023-07-13 14:29:43 -07:00
table {
@apply w-full;
}
2023-07-13 17:03:49 -07:00
.actions {
@apply text-end;
a {
@apply me-3;
@apply last-of-type:me-0;
}
}
2023-07-13 14:29:43 -07:00
</style>