I\'m new to Vue and webpack in general and I\'m having a hard time figuring out how to import things.
I created a fresh Vue project through vue init I added
You don't want to do any kind of adjustment in webpack.config.js like adding jQuery global in plugin array.
Once you installed all bootstrap dependencies like jQuery and popper than just import them in app.vue or main.js (you can import separately in each component if you wish)
import 'bootstrap/dist/css/bootstrap.min.css'
import 'jquery/src/jquery.js'
import 'bootstrap/dist/js/bootstrap.min.js'
thats it ..