17 lines
248 B
Vue
17 lines
248 B
Vue
<script setup>
|
|
import { Link } from '@inertiajs/vue3';
|
|
|
|
defineProps({
|
|
href: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Link :href="href" class="dropdown-item">
|
|
<slot />
|
|
</Link>
|
|
</template>
|