Buefy/BoostrapVue namespace conflict Buefy/BoostrapVue namespace conflict vue.js vue.js

Buefy/BoostrapVue namespace conflict


You can import only specific modules from BootstrapVue that needed to your project rather than importing all of the bootstrap-vue components:

import bModal from 'bootstrap-vue'import bAlert from 'bootstrap-vue'Vue.component('b-modal', bModal)Vue.component('b-alert', bAlert)

Hope it will fix b-table conflict.