Files
BetiX/resources/js/components/TextLink.vue
Dolo 0280278978
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
Initialer Laravel Commit für BetiX
2026-04-04 18:01:50 +02:00

19 lines
341 B
Vue

<script setup lang="ts">
import { Link } from '@inertiajs/vue3';
defineProps<{
href: string;
tabindex?: number;
}>();
</script>
<template>
<Link
:href="href"
:tabindex="tabindex"
class="font-medium text-[#00f2ff] hover:text-[#00f2ff]/80 transition-colors"
>
<slot />
</Link>
</template>