mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
51 lines
1.2 KiB
Vue
51 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import { useAppStore } from '@/store'
|
|
|
|
const router = useRouter()
|
|
const route = useRoute()
|
|
const routes = computed(() => {
|
|
return route.matched
|
|
})
|
|
const appStore = useAppStore()
|
|
</script>
|
|
|
|
<template>
|
|
<TransitionGroup v-if="appStore.showBreadcrumb" name="list" tag="ul" style="display: flex; gap:1em;">
|
|
<n-el
|
|
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="() => index === 0 ? router.push(item.path) : false"
|
|
>
|
|
<nova-icon v-if="appStore.showBreadcrumbIcon" :icon="item.meta.icon" />
|
|
<span class="whitespace-nowrap">{{ $t(`route.${String(item.name)}`, item.meta.title) }}</span>
|
|
</n-el>
|
|
</TransitionGroup>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.split:not(:first-child)::before {
|
|
content: '/';
|
|
padding-right:0.6em;
|
|
}
|
|
|
|
.list-move,
|
|
.list-enter-active,
|
|
.list-leave-active {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.list-enter-from,.list-leave-to {
|
|
opacity: 0;
|
|
transform: translateX(-30px);
|
|
}
|
|
|
|
.list-leave-active {
|
|
position: absolute;
|
|
}
|
|
</style>
|