16 lines
318 B
Vue
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>
|