Files
Aether/frontend/src/components/ui/select-value.vue

16 lines
280 B
Vue
Raw Normal View History

2025-12-10 20:52:44 +08:00
<script setup lang="ts">
import { SelectValue as SelectValuePrimitive } from 'radix-vue'
interface Props {
placeholder?: string
}
defineProps<Props>()
2025-12-10 20:52:44 +08:00
</script>
<template>
<SelectValuePrimitive :placeholder="placeholder">
<slot />
</SelectValuePrimitive>
</template>