// 引入Vue import Vue from 'vue' // 引入App import App from './App.vue' // 关闭Vue的生成提示 Vue.config.productionTip = false // const Demo = Vue.extend({}) // const d = new Demo() // Vue.prototype.x = d // Vue.prototype.x = {a:1,b:2} // console.log(Vue.prototype) // 创建vm new Vue({ el:'#app', render:h => h(App), beforeCreate(){ // 尽量早的执行挂载全局事件总线对象的操作 Vue.prototype.$bus = this //安装全局事件总线 } })