0👍
The container max-widths for the various breakpoints (assuming default SCSS vars) are listed in the layout docs at https://bootstrap-vue.js.org/docs/components/layout#grid-options
- [Vuejs]-Vue-cli compiled app not initializing in certain cases
- [Vuejs]-Vuejs passing arguments with a routes href link
0👍
make sure you have @import "~bootstrap/scss/bootstrap";
added in your custom.scss
https://bootstrap-vue.org/docs#using-custom-bootstrap-scss
This work for me.
<b-container :fluid="'md'">
</b-container>
in inspect element it should be class="container-md"
- [Vuejs]-How to disabled autocomplete input type password? not worknig autocomplete="off"
- [Vuejs]-How to pass data using props in v-for?
Source:stackexchange.com