- Fixed import error for `dnd-kit-vue` by installing the package. - Moved user navigation from sidebar to header, adding a dropdown for account options. - Added homepage and notification icons to the header. - Implemented sticky header functionality during scroll. - Grouped sidebar menu items under a "Master" label for better organization. - Updated relevant components and package.json to include new dependencies.
24 lines
766 B
Vue
24 lines
766 B
Vue
<script setup lang="ts">
|
|
import type { DropdownMenuLabelProps } from "reka-ui"
|
|
import type { HTMLAttributes } from "vue"
|
|
import { reactiveOmit } from "@vueuse/core"
|
|
import { DropdownMenuLabel, useForwardProps } from "reka-ui"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const props = defineProps<DropdownMenuLabelProps & { class?: HTMLAttributes["class"], inset?: boolean }>()
|
|
|
|
const delegatedProps = reactiveOmit(props, "class", "inset")
|
|
const forwardedProps = useForwardProps(delegatedProps)
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuLabel
|
|
data-slot="dropdown-menu-label"
|
|
:data-inset="inset ? '' : undefined"
|
|
v-bind="forwardedProps"
|
|
:class="cn('px-2 py-1.5 text-sm font-medium data-[inset]:pl-8', props.class)"
|
|
>
|
|
<slot />
|
|
</DropdownMenuLabel>
|
|
</template>
|