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