其他分享
首页 > 其他分享> > vue 兄弟组件传值

vue 兄弟组件传值

作者:互联网

  1. main.js 入口文件
Vue.prototype.Sets = new Vue() //兄弟组件传值

2.兄弟A页面触发事件

// 触发事件
switap(){
   this.Sets.$emit("swicth", true);
}

3.兄弟B页面

//生命周期
create(){
// 接收
  this.Sets.$on("smwidth", (e) => {
      this.isShow= e;
      if(e){
          this.show = 2
      }else{
           this.show = 1
      }
    });
}

标签:Vue,show,兄弟,vue,Sets,组件,传值,页面
来源: https://blog.csdn.net/qq_38709227/article/details/120220059