码迷,mamicode.com
首页 > 其他好文 > 详细

vue2.0:子组件调用父组件

时间:2017-05-04 23:20:25      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:bsp   eve   data   vue   this   get   route   add   组件   

main.js文件添加如下:

new Vue({
router,
render: h => h(App),
data: {
eventHub: new Vue()
}
}).$mount(‘#app‘);

 

父组件:

监听事件:

this.$root.eventHub.$on(‘cart.add‘, (target) => {
this._drop(target);
});

子组件:

触发事件:

this.$root.eventHub.$emit(‘cart.add‘, event.target);

 

vue2.0:子组件调用父组件

标签:bsp   eve   data   vue   this   get   route   add   组件   

原文地址:http://www.cnblogs.com/jhuang-com/p/6810283.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!