mirror of
https://github.com/lingke-net/Space.Tab.git
synced 2026-09-12 05:45:17 +08:00
18 lines
330 B
Vue
18 lines
330 B
Vue
<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>
|