Files
anyame-frontend-vue/app/components/ui/select/SelectValue.vue
2025-07-19 23:03:04 +05:00

15 lines
264 B
Vue

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