mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-05 22:43:18 +00:00
starting again
This commit is contained in:
15
frontend/src/components/ui/select/SelectValue.vue
Normal file
15
frontend/src/components/ui/select/SelectValue.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script setup>
|
||||
import { SelectValue } from "radix-vue";
|
||||
|
||||
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>
|
||||
Reference in New Issue
Block a user