mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-08 10:42:29 +08:00
16 lines
294 B
Vue
16 lines
294 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { SelectValue as SelectValuePrimitive } from 'radix-vue'
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
placeholder?: string
|
||
|
|
}
|
||
|
|
|
||
|
|
const props = defineProps<Props>()
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<SelectValuePrimitive :placeholder="placeholder">
|
||
|
|
<slot />
|
||
|
|
</SelectValuePrimitive>
|
||
|
|
</template>
|