Separator home check added

pull/3572/head
Bahadır Sofuoğlu 2023-01-21 00:11:14 +03:00
parent 37211ca834
commit 4948735e91
1 changed files with 7 additions and 2 deletions

View File

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