feat(front): add UI components for label, progress, and select elements with TypeScript support

This commit is contained in:
keven1024
2025-04-21 09:03:17 +08:00
parent df38398851
commit e6e8d6a143
18 changed files with 409 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<script setup lang="ts">
import { SelectItemText, type SelectItemTextProps } from 'reka-ui'
const props = defineProps<SelectItemTextProps>()
</script>
<template>
<SelectItemText
data-slot="select-item-text"
v-bind="props"
>
<slot />
</SelectItemText>
</template>