mirror of
https://github.com/abhinavxd/libredesk.git
synced 2026-09-24 11:26:22 +00:00
15 lines
283 B
Vue
15 lines
283 B
Vue
<script setup>
|
|
import { ContextMenuGroup } from "reka-ui";
|
|
|
|
const props = defineProps({
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuGroup v-bind="props">
|
|
<slot />
|
|
</ContextMenuGroup>
|
|
</template>
|