I am trying to display a basic bootstrap-vueJS modal but for some reason something is not working.
Here is what the display looks like :
This is the code from the documentation to display the modal :
<div>
<b-button v-b-modal.modal-1>Launch demo modal</b-button>
<b-modal id="modal-1" title="BootstrapVue">
<p class="my-4">Hello from modal!</p>
</b-modal>
</div>
This is what my app.scss file looks like :
// Fonts
@import url('https://fonts.googleapis.com/css?family=Nunito');
// Variables
@import 'variables';
// Bootstrap
//@import '~bootstrap/scss/bootstrap';
@import '~bootstrap-vue/dist/bootstrap-vue.min.css';
These are my dependencies from my package.json file :
"dependencies": {
"admin-lte": "^2.4.18",
"bootstrap-vue": "^2.1.0",
"bootstrap-vue-datatable": "^1.0.7",
"fine-uploader": "^5.16.2",
"laravel-vue-datatable": "^0.4.2",
"moment": "^2.24.0",
"paginationjs": "^2.1.5",
"vue-router": "^3.1.3"
}
Thanks for your help !