Files
simrsx-fe/app/components/pub/ui/select/SelectValue.vue
2025-08-07 14:45:37 +07:00

13 lines
257 B
Vue

<script setup lang="ts">
import type { SelectValueProps } from 'radix-vue'
import { SelectValue } from 'radix-vue'
const props = defineProps<SelectValueProps>()
</script>
<template>
<SelectValue v-bind="props">
<slot />
</SelectValue>
</template>