I am writing a Vue.js app with Bootstrap 4 and I can\'t loaded though I followed the documentation.
Added to main.js
Vue.use(BootstrapVue);
In my case I was working with vue-cli 4.3.1, and I was using this configuration by error.
If you remove this configuration then all work nice!
https://cli.vuejs.org/guide/css.html#css-modules
If you want to drop the .module in the filenames, set css.requireModuleExtension to false in vue.config.js:
// vue.config.js
module.exports = {
css: {
requireModuleExtension: false
}
}