mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-19 13:19:37 +02:00
- Added Slider component to the UI library - Added Checkbox component to the UI library - Added Textarea component to the UI library
15 lines
394 B
Vue
15 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>
|