Fix quotation mark in doc

pull/2211/head
Dennis H 2022-01-20 16:44:23 +01:00 committed by Tuğçe Küçükoğlu
parent da45b059a9
commit 94e2d3d796
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ export default {
<Menubar :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>
</Menubar>