[Vuejs]-Bootstrap-vue vuejs dynamic async component import

0👍

I think the solution is to wrap it in another component like AppNavbar which imports the BNavbarPlugin the basic way import { BNavbarPlugin } from 'bootstrap-vue' Then import your wrapper component dynamically

AppNavbar: () => import('@/components/AppNavbar')

Leave a comment