13 lines
253 B
Vue
13 lines
253 B
Vue
<script setup lang="ts">
|
|
import type { SelectValueProps } from 'reka-ui'
|
|
import { SelectValue } from 'reka-ui'
|
|
|
|
const props = defineProps<SelectValueProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<SelectValue v-bind="props">
|
|
<slot />
|
|
</SelectValue>
|
|
</template>
|