frontend/app/components/ui/select/SelectValue.vue

12 lines
262 B
Vue
Raw Normal View History

<script setup lang="ts">
import { SelectValue, type SelectValueProps } from "reka-ui";
const props = defineProps<SelectValueProps>();
</script>
<template>
2025-12-09 22:32:22 +01:00
<SelectValue data-slot="select-value" v-bind="props">
<slot/>
</SelectValue>
</template>