pull/3578/head
Tuğçe Küçükoğlu 2023-01-23 11:58:32 +03:00
parent 3acadd5ae8
commit d68ce0fafa
1 changed files with 1 additions and 6 deletions

View File

@ -3,7 +3,7 @@
<ol class="p-breadcrumb-list">
<BreadcrumbItem v-if="home" :item="home" class="p-breadcrumb-home" :exact="exact" />
<template v-for="(item, i) of model" :key="item.label">
<li v-if="isHomeExist(i)" class="p-menuitem-separator">
<li v-if="home || i !== 0" class="p-menuitem-separator">
<span class="pi pi-chevron-right" aria-hidden="true"></span>
</li>
<BreadcrumbItem :item="item" :template="$slots.item" :exact="exact" />
@ -31,11 +31,6 @@ export default {
default: true
}
},
methods: {
isHomeExist(i) {
return this.home || i !== 0;
}
},
components: {
BreadcrumbItem: BreadcrumbItem
}