mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 15:13:30 +00:00
13 lines
286 B
Vue
13 lines
286 B
Vue
<script setup lang="ts">
|
|
import type { SelectGroupProps } from 'reka-ui'
|
|
import { SelectGroup } from 'reka-ui'
|
|
|
|
const props = defineProps<SelectGroupProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<SelectGroup data-slot="select-group" v-bind="props">
|
|
<slot />
|
|
</SelectGroup>
|
|
</template>
|