Update Breadcrumb.vue

This commit is contained in:
Titw 2024-04-08 20:23:57 +08:00 committed by GitHub
parent 651d13e238
commit efaf6eff9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,14 +12,14 @@ const appStore = useAppStore()
<template>
<TransitionGroup v-if="appStore.showBreadcrumb" name="list" tag="ul" style="display: flex; gap:1em;">
<n-el
v-for="(item) in routes"
v-for="(item, index) in routes"
:key="item.path"
tag="li" style="
color: var(--text-color-2);
transition: 0.3s var(--cubic-bezier-ease-in-out);
"
class="flex-center gap-2 cursor-pointer split"
@click="router.push(item.path)"
@click="() => index === 0 ? router.push(item.path) : console.log('route not allowed')"
>
<nova-icon v-if="appStore.showBreadcrumbIcon" :icon="item.meta.icon" />
<span class="whitespace-nowrap">{{ $t(`route.${String(item.name)}`, item.meta.title) }}</span>