Files
ntspi-app/resources/js/Components/LegacyComponents/AdminIndexTableHead.vue
T
2024-09-19 16:06:49 +05:00

20 lines
259 B
Vue

<template>
<thead class="bg-gray-50 dark:bg-slate-800">
<tr>
<slot />
</tr>
</thead>
</template>
<script>
import {Link} from "@inertiajs/vue3";
export default {
name: "AdminIndexTableHead",
components: {Link}
}
</script>
<style scoped>
</style>