mirror of
https://github.com/keven1024/015.git
synced 2026-06-08 13:24:33 +00:00
38 lines
1.6 KiB
Vue
38 lines
1.6 KiB
Vue
<script setup lang="ts">
|
|
import type { MenubarItemEmits, MenubarItemProps } from 'reka-ui'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { reactiveOmit } from '@vueuse/core'
|
|
import { MenubarItem, useForwardPropsEmits } from 'reka-ui'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<
|
|
MenubarItemProps & {
|
|
class?: HTMLAttributes['class']
|
|
inset?: boolean
|
|
variant?: 'default' | 'destructive'
|
|
}
|
|
>()
|
|
|
|
const emits = defineEmits<MenubarItemEmits>()
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class', 'inset', 'variant')
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<MenubarItem
|
|
data-slot="menubar-item"
|
|
:data-inset="inset ? '' : undefined"
|
|
:data-variant="variant"
|
|
v-bind="forwarded"
|
|
:class="
|
|
cn(
|
|
'focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive-foreground data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/40 data-[variant=destructive]:focus:text-destructive-foreground data-[variant=destructive]:*:[svg]:!text-destructive-foreground [&_svg:not([class*=\'text-\'])]:text-muted-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=\'size-\'])]:size-4',
|
|
props.class
|
|
)
|
|
"
|
|
>
|
|
<slot />
|
|
</MenubarItem>
|
|
</template>
|