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

16 lines
308 B
Vue

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