bvue-sidebar
Version:
Vue2Sidebar: Bootstrap 4 sidebar component in Vue 2.0
13 lines • 394 B
text/typescript
import Vue from 'vue';
import router from './router';
import store from './store';
import './registerServiceWorker';
import 'bootstrap/dist/css/bootstrap.css';
Vue.config.productionTip = false;
import BootstrapSideBar from '@/components/sidebar.vue';
Vue.component('side-bar',BootstrapSideBar);
new Vue({
router,
store,
render: (h) => h(BootstrapSideBar),
}).$mount('#bootstrap-sidebar');