mirror of
https://github.com/unraid/api.git
synced 2026-05-24 02:08:57 -05:00
e84c3ebe14
Currently the build doesn't work in webgui
15 lines
414 B
Vue
15 lines
414 B
Vue
<script setup lang="ts">
|
|
import { DropdownMenuRoot, type DropdownMenuRootEmits, type DropdownMenuRootProps, useForwardPropsEmits } from 'radix-vue'
|
|
|
|
const props = defineProps<DropdownMenuRootProps>()
|
|
const emits = defineEmits<DropdownMenuRootEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuRoot v-bind="forwarded">
|
|
<slot />
|
|
</DropdownMenuRoot>
|
|
</template>
|