We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8727d2 + 5e1348a commit 4750442Copy full SHA for 4750442
packages/bootstrap-vue-3/src/components/BLink/BLink.vue
@@ -10,7 +10,10 @@
10
:is="routerTag"
11
ref="link"
12
:href="href"
13
- :class="[isActive && activeClass, isExactActive && exactActiveClass]"
+ :class="[
14
+ (isActive || activeBoolean) && activeClass,
15
+ (isExactActive || exactBoolean) && exactActiveClass,
16
+ ]"
17
v-bind="$attrs"
18
@click="navigate"
19
>
packages/bootstrap-vue-3/src/components/BNav/BNavItem.vue
@@ -3,6 +3,7 @@
3
<b-link
4
class="nav-link"
5
v-bind="$props"
6
+ active-class="active"
7
:tabindex="disabledBoolean ? -1 : undefined"
8
:aria-disabled="disabledBoolean ? true : undefined"
9
0 commit comments