mirror of
https://github.com/keven1024/015.git
synced 2026-06-06 12:29:34 +00:00
35 lines
1.3 KiB
Vue
35 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import type { MenubarContentProps } from 'reka-ui'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { reactiveOmit } from '@vueuse/core'
|
|
import { MenubarContent, MenubarPortal, useForwardProps } from 'reka-ui'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = withDefaults(defineProps<MenubarContentProps & { class?: HTMLAttributes['class'] }>(), {
|
|
align: 'start',
|
|
alignOffset: -4,
|
|
sideOffset: 8,
|
|
})
|
|
|
|
const delegatedProps = reactiveOmit(props, 'class')
|
|
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<MenubarPortal>
|
|
<MenubarContent
|
|
data-slot="menubar-content"
|
|
v-bind="forwardedProps"
|
|
:class="
|
|
cn(
|
|
'bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 min-w-[12rem] origin-(--reka-menubar-content-transform-origin) overflow-hidden rounded-md border p-1 shadow-md',
|
|
props.class
|
|
)
|
|
"
|
|
>
|
|
<slot />
|
|
</MenubarContent>
|
|
</MenubarPortal>
|
|
</template>
|