2019-11-20 22:45:03 +01:00
|
|
|
import Vue from 'vue';
|
|
|
|
import StatusBoxContainer from './StatusBoxContainer.vue';
|
2019-12-08 12:15:27 +01:00
|
|
|
import BootstrapVue, { BButton, BModal, VBModal} from 'bootstrap-vue';
|
|
|
|
import { NavbarPlugin } from 'bootstrap-vue';
|
|
|
|
import { SpinnerPlugin } from 'bootstrap-vue';
|
|
|
|
|
|
|
|
import './assets/styles/main.scss';
|
|
|
|
|
|
|
|
Vue.component('b-button', BButton);
|
|
|
|
Vue.component('b-modal', BModal);
|
|
|
|
|
|
|
|
Vue.directive('b-modal', VBModal);
|
|
|
|
|
|
|
|
Vue.use(NavbarPlugin);
|
|
|
|
Vue.use(SpinnerPlugin);
|
2019-11-20 22:45:03 +01:00
|
|
|
|
|
|
|
new Vue({
|
|
|
|
el: '#statusBoxContainer',
|
|
|
|
render: b => b(StatusBoxContainer),
|
|
|
|
});
|