fix: Breadcrumb documentation #3507

pull/3542/head
Igor Raphael 2023-01-16 14:13:06 -03:00
parent acd0cab827
commit 3e293137be
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ export default {
<Breadcrumb :home="home" :model="items">
<template #item="{item}">
<router-link :to="item.to" custom v-slot="{href, route, navigate, isActive, isExactActive}">
<a :href="href" @click="navigate" :class="{'active-link': isActive, 'active-link-exact": isExactActive}>{{route.fullPath}}</a>
<a :href="href" @click="navigate" :class="{'active-link': isActive, 'active-link-exact': isExactActive}">{{route.fullPath}}</a>
</router-link>
</template>
</Breadcrumb>