I upgraded Bootstrap-Vue from v2.0.0 RC11 to v2.19.0 and now my dropdowns in the Navbar are not closing automatically after clicking the link? Is there a setting or something I can call to force the dropdowns to close after clicking? I'm using "to" routes instead of "href" if that matters for the links.
<b-navbar type="light" variant="" toggleable="sm" fixed="top" class="elevate-3 no-print">
<b-navbar-brand to="/cp/">
<img v-if="$store.getters.auth.logoUrl" :src="$store.getters.auth.logoUrl" :title="$store.getters.auth.currentGroupName">
<span v-else style="padding-left:28px;">{{$store.getters.auth.currentGroupName}}</span>
</b-navbar-brand>
<b-navbar-toggle target="nav_dropdown_collapse" class="m-2"></b-navbar-toggle>
<b-collapse is-nav id="nav_dropdown_collapse">
<b-navbar-nav class="ml-auto">
<b-nav-item-dropdown :text="route.display" right v-for="(route, i) in permedRoutes" :key="'a-' + i" :class="getRouteClass(permedRoutes.length, route.path)" :title="route.display">
<template #button-content>
<span>
<fa-icon :icon="route.icon" fixed-width />
{{ route.display }}
</span>
</template>
<b-link :to="child.path" class="dropdown-item" v-for="(child, i) in route.children" :key="'ac-' + i" :title="child.display">
{{ child.display }}
</b-link>
</b-nav-item-dropdown>
<b-button class="btn-logout m-1 d-none d-sm-block" type="submit" variant="danger" @click="logout"><span class="fas fa-sign-out-alt fa-fw"></span></b-button>
<b-nav-item class="d-xs-block d-sm-none" title="Sign Out" @click="logout"><span class="fas fa-sign-out-alt fa-fw"></span> Sign Out</b-nav-item>
</b-navbar-nav>
</b-collapse>
</b-navbar>
