frontend/app/components/ui/select/SelectValue.vue
2026-01-09 21:47:12 +01:00

12 lines
263 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>