Files
libredesk/frontend/src/components/ui/select/SelectValue.vue
2025-04-09 16:52:25 +05:30

16 lines
327 B
Vue

<script setup>
import { SelectValue } from 'radix-vue'
const props = defineProps({
placeholder: { type: [String, Number], required: false },
asChild: { type: Boolean, required: false },
as: { type: null, required: false }
})
</script>
<template>
<SelectValue v-bind="props">
<slot />
</SelectValue>
</template>