Files
OCS_service/app/components/ui/select/SelectValue.vue
T
2026-05-22 16:27:35 +08:00

16 lines
289 B
Vue

<script setup lang="ts">
import type { SelectValueProps } from 'reka-ui'
import { SelectValue } from 'reka-ui'
const props = defineProps<SelectValueProps>()
</script>
<template>
<SelectValue
data-slot="select-value"
v-bind="props"
>
<slot />
</SelectValue>
</template>