We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3a2958 commit 14fa8e7Copy full SHA for 14fa8e7
components/Breadcrumbs.vue
@@ -10,7 +10,7 @@ const props = defineProps({
10
<template>
11
<Flex align="center" gap="6" :class="$style.items">
12
<Flex v-for="(item, idx) in items" align="center" gap="6" :class="$style.item">
13
- <NuxtLink :to="item.link">
+ <NuxtLink :to="idx !== items.length - 1 ? item.link : null">
14
<Text size="12" weight="600" :color="idx < items.length - 1 ? 'secondary' : 'primary'">{{ item.name }}</Text>
15
</NuxtLink>
16
0 commit comments