Files
litlyx/dashboard/components/ui/select/SelectValue.vue
2025-11-28 16:49:20 +01: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>