import Vue from 'vue' import App from './App.vue' import router from './routers' import store from './store' import './plugins/element.js' import AxiosPlugin from './plugins/AxiosPlugin' Vue.config.productionTip = false Vue.use(AxiosPlugin) new Vue({ router, store, render: h => h(App) }).$mount('#app')