Initialer Laravel Commit für BetiX
This commit is contained in:
18
resources/js/components/TextLink.vue
Normal file
18
resources/js/components/TextLink.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user