Teren-app/resources/js/Components/ui/select/SelectValue.vue
Simon Pocrnjič 63e0958b66 Dev branch
2025-11-02 12:31:01 +01:00

16 lines
318 B
Vue

<script setup>
import { SelectValue } from "reka-ui";
const props = defineProps({
placeholder: { type: String, required: false },
asChild: { type: Boolean, required: false },
as: { type: null, required: false },
});
</script>
<template>
<SelectValue v-bind="props">
<slot />
</SelectValue>
</template>