15 lines
404 B
Vue
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>
|