0👍
I fixed this issue with creating a collpase_navbar
method, that we could call to close navbar when needed.
collapse_navbar() {
const navbar = document.querySelector('.navbar-collapse.show');
if (navbar) {
new bootstrap.Collapse(navbar, {
toggle: false,
}).hide();
}
},
Source:stackexchange.com