vue兄弟组件传递数据

在main.js里面设置data{eventHub:new Vue() }  

new Vue({
  el: '#app',
  router,
  store,
  template: '',
  components: { App },
   data:{
     eventHub:new Vue()   // 在main.js设置所有组件都能用调用
  },
      
})
    

 

 我们再组件一设置一个事件调用组件二的事件,传递数据给组件二


转载于:https://www.cnblogs.com/complete94/p/7142122.html

你可能感兴趣的:(vue兄弟组件传递数据)