Scope Bootstrap Css in Vue

<style scoped src=”https://stackoverflow.com/questions/49653931/~bootstrap/dist/css/bootstrap.css”></style> <style scoped src=”~bootstrap-vue/dist/bootstrap-vue.css”></style> Update: a hack using SCSS Reason why the first solution won’t work: With scoped, the parent component’s styles will not leak into child components. If you want a selector in scoped styles to be “deep”, i.e. affecting child components, you can use the >>> combinator from the Vue doc … Read more