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

18 lines
196 B
Vue
Raw Normal View History

2018-09-26 22:27:42 +08:00
<template>
2018-09-29 16:37:40 +08:00
<table>
<thead>
<slot name="header" />
</thead>
<tbody>
<slot />
</tbody>
</table>
2018-09-26 22:27:42 +08:00
</template>
<style scoped>
table {
2018-09-29 16:37:40 +08:00
min-width: 28rem;
border-spacing: 0;
2018-09-26 22:27:42 +08:00
}
</style>