There are several Bootstrap 4 themes that make styling and laying out a website easy.
Some of these require that our assets folders be layed out in very specific ways, for example:
https://htmlstream.com/public/preview/stream-ui-kit/docs.html
root-folder/
├── assets/
│ ├── css/
│ │ ├── styles.css
│ │ ├── min.styles.css
│ ├── img/
│ │ ├── ...
│ ├── img-temp/
│ │ ├── ...
│ ├── include/
│ │ ├── scss/
│ │ │ ├── ...
│ ├── js/
│ │ ├── global.js
│ │ ├── ...
│ ├── vendor/
│ │ ├── bootstrap/
│ │ ├── chartist-js/
│ │ ├── ...
On a plain css/js/html site this setup works perfectly well.
How may we integrate such pre-made templates into a vue.js workflow?
Notes:
1) using bootstrap-vue might not be ideal, as it has it's own styling and will not work easily with 3rd party themes
2) npm install bootstrap jquery popper.js
will also not be ideal, as it will break the themes' expected folder structure which already works perfectly as unit.
My objective is to simply reuse the 3rd party theme(s), their styles, html snippets, etc, while augmenting parts of the site with vue.js