mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-11 22:58:26 +00:00
19 lines
326 B
Vue
19 lines
326 B
Vue
<template>
|
|
<table class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<slot name="thead" />
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<slot name="tbody" />
|
|
</tbody>
|
|
</table>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
// Pas de props à définir, composant slot simple
|
|
</script>
|
|
|
|
<style scoped></style>
|