mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
12 lines
245 B
Vue
12 lines
245 B
Vue
![]() |
<script setup lang="ts">
|
||
|
import { SelectItemText, type SelectItemTextProps } from 'radix-vue'
|
||
|
|
||
|
const props = defineProps<SelectItemTextProps>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<SelectItemText v-bind="props">
|
||
|
<slot />
|
||
|
</SelectItemText>
|
||
|
</template>
|