library/frontend/components/Table/index.vue
2023-07-13 14:29:43 -07:00

13 lines
153 B
Vue

<script setup lang="ts">
</script>
<template>
<table><slot /></table>
</template>
<style scoped lang="postcss">
table {
@apply w-full;
}
</style>