Files
neo/frontend/components/ui/select/SelectValue.vue
Francisco Gaona a6f1da28b2 Code formatting
2025-11-25 23:17:54 +01:00

13 lines
253 B
Vue

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