[Vuejs]-Vue router <router-link></router-link> is not working with bootstrap data-bs-toggle and data-bs-target

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();
        }
    },

Leave a comment