require('./bootstrap.js')
Problems with bootstrap
Hi,
I got problems with bootstrap. The JS part is not imported into my template (or so it seems.)
Seems css is imported just fine (boostrap), as I can do 'class="btn btn-primary"' and the styling works just fine. However, my menu are not working (using default bootstrap one).
This is the end of my app.js file:
.....
/**
* First we will load all of this project's JavaScript dependencies which
* includes Vue and other libraries. It is a great starting point when
* building robust, powerful web applications using Vue and Laravel.
*/
require('./bootstrap');
window.Vue = require('vue');
/**
* Next, we will create a fresh Vue application instance and attach it to
* the page. Then, you may begin adding components to this application
* or customize the JavaScript scaffolding to fit your unique needs.
*/
Vue.component('example', require('./components/Example.vue'));
const app = new Vue({
el: '#app'
});
https://hydraulikskolen-kgp43.c9users.io/js/app.js:
Looks like the bootstrap is not imported?
All of that code that you see that is 'odd' is fine. That's just webpack related stuff.
Yeah so to get bootstrap working then, all you need to do is require('bootstrap-sass') and it should work.
This actually usually comes out of the box in the bootstrap.js file. If its not there for some reason, just add it after jQuery
Please or to participate in this conversation.