14 lines
153 B
Vue
14 lines
153 B
Vue
|
<script setup lang="ts">
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<table><slot /></table>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="postcss">
|
||
|
table {
|
||
|
@apply w-full;
|
||
|
}
|
||
|
</style>
|