- 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
}
});
}