You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Opening the navbar dropdown should return the specific event from (bv::dropdown::show). Unfortunately the corresponding event is undfined ? I just updated vue-bootstrap from 2.20.1 to 2.21.0.
my code looks like this:
`
this.$root.$on("bv::dropdown::show", bvEvt => {
if (bvEvt.componentId === "menu-links") {
var hamburger = document.querySelector(".hamburger");
hamburger.classList.add("is-active");
}
if (bvEvt.componentId === "lang-links") {
var caretText = document.querySelector('.toggle-text');
caretText.classList.add('toggle-caret');
}
});`
Expected behavior
I expected to get the corresponding event to initialize further actions on the event.
Versions
Libraries:
BootstrapVue: 2.21.0
Nuxt 2.14.11
Environment:
Device: Desktop
OS: Windows
Browser: Chrome
Version: 87.0.4
The text was updated successfully, but these errors were encountered:
Describe the bug
Opening the navbar dropdown should return the specific event from (bv::dropdown::show). Unfortunately the corresponding event is undfined ? I just updated vue-bootstrap from 2.20.1 to 2.21.0.
my code looks like this:
`
Expected behavior
I expected to get the corresponding event to initialize further actions on the event.
Versions
Libraries:
Environment:
The text was updated successfully, but these errors were encountered: