提交开源版本

This commit is contained in:
2025-08-16 14:25:11 +08:00
parent 5255e39e91
commit 68fc9a960d
307 changed files with 38816 additions and 0 deletions
@@ -0,0 +1,17 @@
<script lang="ts" setup>
import type { HTMLAttributes } from 'vue'
import { cn } from '@/lib/utils'
const props = defineProps<{
class?: HTMLAttributes['class']
}>()
</script>
<template>
<li
data-slot="breadcrumb-item"
:class="cn('inline-flex items-center gap-1.5', props.class)"
>
<slot />
</li>
</template>