| Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame^] | 1 | import Vue from "vue"; |
| 2 | import App from "./App.vue"; | ||||
| 3 | import router from "./router"; | ||||
| 4 | import store from "./store"; | ||||
| 5 | import Axios from "axios"; | ||||
| 6 | import { | ||||
| 7 | ButtonPlugin, | ||||
| 8 | NavPlugin, | ||||
| 9 | CollapsePlugin, | ||||
| 10 | LinkPlugin, | ||||
| 11 | NavbarPlugin | ||||
| 12 | } from "bootstrap-vue"; | ||||
| 13 | |||||
| 14 | Vue.use(ButtonPlugin); | ||||
| 15 | Vue.use(NavPlugin); | ||||
| 16 | Vue.use(CollapsePlugin); | ||||
| 17 | Vue.use(LinkPlugin); | ||||
| 18 | Vue.use(NavbarPlugin); | ||||
| 19 | |||||
| 20 | Vue.prototype.$http = Axios; | ||||
| 21 | |||||
| 22 | new Vue({ | ||||
| 23 | router, | ||||
| 24 | store, | ||||
| 25 | render: h => h(App) | ||||
| 26 | }).$mount("#app"); | ||||