I installed Bootstrap Vue as follows: npm install bootstrap-vue then i add in main.js:
import Vue from 'vue'
import { BootstrapVue, BootstrapVueIcons } from 'bootstrap-vue'
import App from './App.vue'
import router from './router.js'
Vue.config.productionTip =false
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
Vue.use(BootstrapVue)
Vue.use(BootstrapVueIcons)
new Vue({
router,
render: h => h(App)
}).$mount('#app')
But I got the error in cmd:
export 'default' (imported as 'Vue') was not found in 'vue' ...