mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 04:19:25 +00:00
19 lines
416 B
Vue
19 lines
416 B
Vue
<script setup lang="ts">
|
|
import {
|
|
type NavigationMenuLinkEmits,
|
|
type NavigationMenuLinkProps,
|
|
useForwardPropsEmits,
|
|
} from "radix-vue";
|
|
|
|
const props = defineProps<NavigationMenuLinkProps>();
|
|
const emits = defineEmits<NavigationMenuLinkEmits>();
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<NavigationMenuLink v-bind="forwarded">
|
|
<slot />
|
|
</NavigationMenuLink>
|
|
</template>
|