bvue-sidebar
Version:
Vue2Sidebar: Bootstrap 4 sidebar component in Vue 2.0
24 lines (19 loc) • 484 B
JavaScript
import Vue from 'vue';
Vue.config.productionTip = false;
// jQuery is required by bootstrap to work
window.$ = window.jQuery = require('jquery');
import 'bootstrap';
import 'bootstrap/dist/css/bootstrap.css';
import 'font-awesome/css/font-awesome.css';
import App from './App.vue';
new Vue({
el: '#app',
render: h => h(App),
created() {
console.log('Main app created');
},
mounted() {
console.log('Main app mounted');
},
});
;