14 lines
167 B
Vue
14 lines
167 B
Vue
|
<script setup lang="ts">
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<tbody><slot /></tbody>
|
||
|
</template>
|
||
|
|
||
|
<style lang="postcss">
|
||
|
tbody {
|
||
|
@apply divide-y divide-pink-400/40;
|
||
|
}
|
||
|
</style>
|