import Vue from 'vue' import App from './App.vue' import router from './router' import store from './store' import Buefy from 'buefy' import axios from 'axios' import VueAxios from 'vue-axios' import i18n from './i18n' Vue.use(VueAxios, axios) Vue.use(Buefy) Vue.config.productionTip = false new Vue({ router, store, i18n, render: h => h(App) }).$mount('#app')