Files
solidtime/resources/js/Components/TableRow.vue
T
2024-04-08 18:55:50 +02:00

25 lines
559 B
Vue

<script setup lang="ts">
import { Link } from '@inertiajs/vue3';
import { twMerge } from 'tailwind-merge';
defineProps<{
href?: string;
}>();
</script>
<template>
<Component
:is="href ? Link : 'div'"
:href="href"
:class="
twMerge(
'contents [&>*]:hover:bg-white/5 [&>*]:transition [&>*]:cursor-pointer [&>*]:border-row-separator [&>*]:border-b',
href ? '[&>*]:cursor-pointer' : ''
)
">
<slot></slot>
</Component>
</template>
<style scoped></style>