A.vue传值给B.vue
- 方法一 适用vue2
A.vue中发送数据和信号
this.$nextTick(function() {
this.$root.eventHub.$emit('isSee', data);
})
B.vue中接收
mounted () {
this.$root.eventHub.$on('isSee',(targetDta) => {
console.log('isSee===',targetDta);
this.isLook = true;
})
}
- 方法一 适用vue2
网友评论