1
0
Fork 0
dri/src/components/List.vue

18 lines
196 B
Vue

<template>
<table>
<thead>
<slot name="header" />
</thead>
<tbody>
<slot />
</tbody>
</table>
</template>
<style scoped>
table {
min-width: 28rem;
border-spacing: 0;
}
</style>