mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-28 09:56:25 -05:00
18 lines
345 B
Vue
18 lines
345 B
Vue
<script setup lang="ts">
|
|
import {
|
|
ContextMenuTrigger,
|
|
type ContextMenuTriggerProps,
|
|
useForwardProps,
|
|
} from "radix-vue";
|
|
|
|
const props = defineProps<ContextMenuTriggerProps>();
|
|
|
|
const forwardedProps = useForwardProps(props);
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuTrigger v-bind="forwardedProps">
|
|
<slot />
|
|
</ContextMenuTrigger>
|
|
</template>
|