mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 07:46:15 -04:00
16 lines
394 B
Vue
16 lines
394 B
Vue
![]() |
<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>
|