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
      }
    });
}
上一篇:CF476D Dreamoon and Sets


下一篇:【题解】【CF486D Valid Sets】