15 lines
264 B
Vue
15 lines
264 B
Vue
<script setup lang="ts">
|
|
import { SelectGroup, type SelectGroupProps } from 'reka-ui'
|
|
|
|
const props = defineProps<SelectGroupProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<SelectGroup
|
|
data-slot="select-group"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</SelectGroup>
|
|
</template>
|