Merge pull request #3542 from igorraphael/issue-3507

fix: Breadcrumb documentation #3507
pull/3550/head
Tuğçe Küçükoğlu 2023-01-17 14:00:57 +03:00 committed by GitHub
commit f667471660
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>