2018-09-15 12:23:21 +01:00
|
|
|
import Vue from "vue";
|
|
|
|
import App from "./App.vue";
|
|
|
|
import router from "./router";
|
|
|
|
import store from "./store";
|
2018-09-17 12:00:28 +01:00
|
|
|
import axios from 'axios';
|
|
|
|
import VueAxios from 'vue-axios';
|
|
|
|
import BootstrapVue from 'bootstrap-vue';
|
2018-09-17 12:44:47 +01:00
|
|
|
import 'bootstrap/dist/css/bootstrap.css'
|
|
|
|
import 'bootstrap-vue/dist/bootstrap-vue.css'
|
2018-09-17 12:00:28 +01:00
|
|
|
import Icon from 'vue-awesome/components/Icon';
|
2018-09-15 12:23:21 +01:00
|
|
|
|
|
|
|
Vue.config.productionTip = false;
|
2018-09-17 12:00:28 +01:00
|
|
|
axios.defaults.baseUrl = "http://localhost:8090/api";
|
|
|
|
Vue.use(VueAxios, axios);
|
|
|
|
Vue.use(BootstrapVue);
|
|
|
|
Vue.component('v-icon', Icon);
|
2018-09-15 12:23:21 +01:00
|
|
|
|
|
|
|
new Vue({
|
|
|
|
router,
|
|
|
|
store,
|
|
|
|
render: h => h(App)
|
|
|
|
}).$mount("#app");
|