1// The Vue build version to load with the `import` command 2// (runtime-only or standalone) has been set in webpack.base.conf with an alias. 3import Vue from 'vue' 4import App from './App' 5import router from './router' 6import axios from 'axios' 7 8Vue.config.productionTip = false 9Vue.prototype.$http = axios 10 11/* eslint-disable no-new */ 12new Vue({ 13 el: '#app', 14 router, 15 components: { App }, 16 template: '<App/>' 17}) 18 19