library/frontend/components/Table/index.vue

14 lines
153 B
Vue
Raw Normal View History

2023-07-13 14:29:43 -07:00
<script setup lang="ts">
</script>
<template>
<table><slot /></table>
</template>
<style scoped lang="postcss">
table {
@apply w-full;
}
</style>