0👍
Import the css file diretly in your vue application:
import Vue from 'vue'
...
import 'bootstrap/dist/css/bootstrap.css' // <-- here
...
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')
And you’re done
Source:stackexchange.com