mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-04 00:32:26 +08:00
Initial commit
This commit is contained in:
15
frontend/src/components/ui/select-value.vue
Normal file
15
frontend/src/components/ui/select-value.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user