I would like to import a single bootstrap component dynamically only when I need it.
Bellow syntax actually can do it but it does import all components.
So final module bundle after tree-shaking is 1.4MB (entire bootstrap library).
BNavbar: () => import('bootstrap-vue').then(module => module.BNavbar),
How can I change it to import only navbar to be equivalent of
import { BNavbarPlugin } from 'bootstrap-vue'
Vue.use(BNavbarPlugin)