Syntax error fix
Fix erroneous quotation marks in class attribute bindingpull/2817/head
parent
5a0fe421a5
commit
e6d649ccd5
|
@ -171,7 +171,7 @@ export default {
|
||||||
<MegaMenu :model="items">
|
<MegaMenu :model="items">
|
||||||
<template #item="{item}">
|
<template #item="{item}">
|
||||||
<router-link :to="item.to" custom v-slot="{href, route, navigate, isActive, isExactActive}">
|
<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>
|
</router-link>
|
||||||
</template>
|
</template>
|
||||||
</MegaMenu>
|
</MegaMenu>
|
||||||
|
@ -739,4 +739,4 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue