agepoly-events/frontend/src/components/ui/combobox/Combobox.vue
Antoine Pelletier 52363d59ac first commit
2026-07-30 06:26:31 +02:00

15 lines
404 B
Vue

<script setup lang="ts">
import type { ComboboxRootEmits, ComboboxRootProps } from 'reka-ui'
import { ComboboxRoot, useForwardPropsEmits } from 'reka-ui'
const props = defineProps<ComboboxRootProps>()
const emits = defineEmits<ComboboxRootEmits>()
const forwarded = useForwardPropsEmits(props, emits)
</script>
<template>
<ComboboxRoot v-bind="forwarded">
<slot />
</ComboboxRoot>
</template>