You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
371 B
12 lines
371 B
|
3 years ago
|
<script setup>
|
||
|
|
import { Link } from '@inertiajs/vue3';
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<Link
|
||
|
|
class="block w-full px-4 py-2 text-left text-sm leading-5 text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-800 transition duration-150 ease-in-out"
|
||
|
|
>
|
||
|
|
<slot />
|
||
|
|
</Link>
|
||
|
|
</template>
|