4 天以前 1c1af9b0fc10778ae5ac13cc68fd4030affbcfe1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script setup lang="ts">
import type { SelectRootEmits, SelectRootProps } from 'reka-ui';
 
import { SelectRoot, useForwardPropsEmits } from 'reka-ui';
 
const props = defineProps<SelectRootProps>();
const emits = defineEmits<SelectRootEmits>();
 
const forwarded = useForwardPropsEmits(props, emits);
</script>
 
<template>
  <SelectRoot v-slot="slotProps" data-slot="select" v-bind="forwarded">
    <slot v-bind="slotProps"></slot>
  </SelectRoot>
</template>