mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
add jetstream permissions, add dynamic inertia module loading, add shadcn components, change modals and dropdowns to shadcn dismissable layer,
15 lines
412 B
Vue
15 lines
412 B
Vue
<script setup lang="ts">
|
|
import { DropdownMenuRoot, type DropdownMenuRootEmits, type DropdownMenuRootProps, useForwardPropsEmits } from 'reka-ui'
|
|
|
|
const props = defineProps<DropdownMenuRootProps>()
|
|
const emits = defineEmits<DropdownMenuRootEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuRoot v-bind="forwarded">
|
|
<slot />
|
|
</DropdownMenuRoot>
|
|
</template>
|