This commit is contained in:
2026-01-16 13:10:36 +08:00
parent 7a4ca4275e
commit b6bb8a6deb
7 changed files with 564 additions and 120 deletions

View File

@@ -2,9 +2,11 @@
<a-breadcrumb class="breadcrumb">
<a-breadcrumb-item v-for="(item, index) in breadcrumbList" :key="item.path">
<span v-if="index === breadcrumbList.length - 1" class="no-redirect">
<component :is="item.meta?.icon || 'FileTextOutlined'" />
{{ item.meta.title }}
</span>
<a v-else @click.prevent="handleLink(item)">
<component :is="item.meta?.icon || 'HomeOutlined'" />
{{ item.meta.title }}
</a>
</a-breadcrumb-item>