summaryrefslogtreecommitdiff
path: root/src/main.js
blob: 16687c5cc4f1365ab7718e4d5a0fa4d9036050d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import Axios from "axios";
import {
  ButtonPlugin,
  NavPlugin,
  CollapsePlugin,
  LinkPlugin,
  NavbarPlugin
} from "bootstrap-vue";

Vue.use(ButtonPlugin);
Vue.use(NavPlugin);
Vue.use(CollapsePlugin);
Vue.use(LinkPlugin);
Vue.use(NavbarPlugin);

Vue.prototype.$http = Axios;

new Vue({
  router,
  store,
  render: h => h(App)
}).$mount("#app");