mirror of
https://github.com/better-auth/better-auth.git
synced 2026-06-01 20:06:41 -05:00
12 lines
257 B
Vue
12 lines
257 B
Vue
<script setup lang="ts">
|
|
import { ContextMenuGroup, type ContextMenuGroupProps } from "radix-vue";
|
|
|
|
const props = defineProps<ContextMenuGroupProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuGroup v-bind="props">
|
|
<slot />
|
|
</ContextMenuGroup>
|
|
</template>
|