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