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

18 lines
267 B
Vue

<template>
<table class="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
<slot />
</table>
</template>
<script>
import {Link} from "@inertiajs/vue3";
export default {
name: "AdminIndexTable",
components: {Link}
}
</script>
<style scoped>
</style>