mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-13 08:48:38 +01:00
31 lines
1.1 KiB
Vue
31 lines
1.1 KiB
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
import { reactiveOmit } from '@vueuse/core'
|
|
import { ChevronRight } from 'lucide-vue-next'
|
|
import {
|
|
DropdownMenuSubTrigger,
|
|
type DropdownMenuSubTriggerProps,
|
|
useForwardProps,
|
|
} from 'reka-ui'
|
|
|
|
const props = defineProps<DropdownMenuSubTriggerProps & { class?: HTMLAttributes['class'], inset?: boolean }>()
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class', 'inset')
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuSubTrigger
|
|
data-slot="dropdown-menu-sub-trigger"
|
|
v-bind="forwardedProps"
|
|
:class="cn(
|
|
'focus:bg-gray-100 focus:text-gray-900 data-[state=open]:bg-gray-100 data-[state=open]:text-gray-900 flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[inset]:pl-8 dark:focus:bg-gray-800 dark:focus:text-gray-50 dark:data-[state=open]:bg-gray-800 dark:data-[state=open]:text-gray-50',
|
|
props.class,
|
|
)"
|
|
>
|
|
<slot />
|
|
<ChevronRight class="ml-auto size-4" />
|
|
</DropdownMenuSubTrigger>
|
|
</template>
|