[Vuejs]-Vuejs , Bootstrap-Vue: Pages in blank: Webpack say, "Cannot read property 'bindings' of null"

0👍

One issue that pops out is that you are using Vue.use(..) for components as well as plugins… this will not work. Also When you Vue.use(BootstrapVue), you are installing all of BootstrapVue (minus the icons). Which is not what you are expecting.

// Register plugins
Vue.use(IconsPlugin)
Vue.use(LayoutPlugin)
Vue.use(NavbarPlugin)
Vue.use(FormTagsPlugin)
// Register components
Vue.component('BForm', BForm)
Vue.component('BFormInput', BFormInput)
Vue.component('BButton', BButton)
Vue.component('BCard', BCard)

Leave a comment