/**
* This file is the main process call for the UI, it loads the main vue component into the index,
* set Vue to use bootstrap toolkit for vue and set, Vue to use Vue-router for routing of pages and
* components. The index.js file in router folder describes the routing used.
* @module main
* @author Edouard Legare <edouard.legare@usherbrooke.ca>
*/
import 'bootstrap/dist/css/bootstrap.css';
import 'bootstrap-vue/dist/bootstrap-vue.css';
import BootstrapVue from 'bootstrap-vue';
import Vue from 'vue';
import App from './App';
import router from './router';
Vue.use(BootstrapVue);
Vue.config.productionTip = false;
new Vue({
router,
render: h => h(App),
}).$mount('#app');