import Vue from 'vue' import App from './App' import router from './router' import '@/assets/fonts/font.css' import ElementUI from 'element-ui' Vue.use(ElementUI) import 'element-ui/lib/theme-chalk/index.css' import '@/styles/index.scss' // global css import locale from 'element-ui/lib/locale/lang/zh-CN' // lang i18n import VCharts from 'v-charts' Vue.use(VCharts) Vue.config.productionTip = false new Vue({ beforeCreate(){ Vue.prototype.$bus=this //安装全局组件,$bus就是当前的VUeComponent示例对象 }, el: '#app', router, components: { App }, template: '<App/>' }) export const eventBus = new Vue();