// The Vue build version to load with the `import` command// (runtime-only or standalone) has been set in webpack.base.conf with an alias.importVuefrom'vue'importAppfrom'./operation.vue'importrouterfrom'../index/router/index_router'import'../databoard/assets/index.css'Vue.config.productionTip=false/* eslint-disable no-new */newVue({el:'#app',router,template:'<App/>',components:{App}})