mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-05 06:23:27 +00:00
16 lines
327 B
Vue
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>
|