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