<script setup lang="ts">
|
import type { DropdownMenuItemProps } from 'radix-vue';
|
|
import { computed } from 'vue';
|
|
import { cn } from '@vben-core/shared/utils';
|
|
import { DropdownMenuItem, useForwardProps } from 'radix-vue';
|
|
const props = defineProps<
|
DropdownMenuItemProps & { class?: any; inset?: boolean }
|
>();
|
|
const delegatedProps = computed(() => {
|
const { class: _, ...delegated } = props;
|
|
return delegated;
|
});
|
|
const forwardedProps = useForwardProps(delegatedProps);
|
</script>
|
|
<template>
|
<DropdownMenuItem
|
v-bind="forwardedProps"
|
:class="
|
cn(
|
'focus:bg-accent focus:text-accent-foreground relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:opacity-50',
|
inset && 'pl-8',
|
props.class,
|
)
|
"
|
>
|
<slot></slot>
|
</DropdownMenuItem>
|
</template>
|