1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-20 21:59:36 +02:00
it-tools/packages/app/src/modules/ui/components/select/Select.vue

16 lines
394 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { SelectRootEmits, SelectRootProps } from 'radix-vue'
import { SelectRoot, useForwardPropsEmits } from 'radix-vue'
const props = defineProps<SelectRootProps>()
const emits = defineEmits<SelectRootEmits>()
const forwarded = useForwardPropsEmits(props, emits)
</script>
<template>
<SelectRoot v-bind="forwarded">
<slot />
</SelectRoot>
</template>