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