# 非父子组件间传值
# Vue2方法:Bus
当组件的嵌套多时,非父子组件间传值就显得复杂,除了使用vuex (opens new window)实现之外,还可以通过Bus(或者叫 总线/发布订阅模式/观察者模式)的方式实现非父子组件间传值。
<div id="root">
<child1 content="组件1:点我传出值"></child1>
<child2 content="组件2"></child2>
</div>
<script type="text/javascript">
Vue.prototype.bus = new Vue()
// 每个Vue原型上都会有bus属性,而且指向同一个Vue实例
Vue.component('child1', {
props: {
content: String
},
template: '<button @click="handleClick">{{content}}</button>',
methods: {
handleClick(){
this.bus.$emit('change', '我是组件1过来的~') // 触发change事件,传出值
}
}
})
Vue.component('child2', {
data() {
return {
childVal: ''
}
},
props: {
content: String,
},
template: '<button>{{content}} + {{childVal}}</button>',
mounted() {
this.bus.$on('change', (msg) => { // 绑定change事件,执行函数接收值
this.childVal = msg
})
}
})
var vm = new Vue({
el: '#root'
})
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
上面代码中,在Vue原型上绑定一个bus
属性,指向一个Vue实例,之后每个Vue实例都会有一个bus
属性。
此方法传值,不限于兄弟组件之间,其他关系组件间都适用。
# Vue3方法:Mitt
在 Vue3 中移除了$on $off等自带的自定义事件相关方法,因此在 vue3 中推荐下载 mitt 库来使用事件总线传递数据,其实 mitt 的使用方式和 vue 原本的自定义事件使用方式相同,学习成本不高。
# 安装mitt库
npm i mitt
1
# 使用mitt库
# 一.全局挂载(ts写法展示)
1.在 main.ts 中全局化挂载
//导入vue创建命令
import { createApp } from 'vue';
//导入vue入口组件
import App from './App.vue';
//导入插件mitt
import mitt from "mitt"
//...
//如果是在ts中可以使用declare module xxx {} 来进行第三方库的ts支持,实现智能提示
//declare:告诉TS编译器你担保这些变量和模块存在,并声明了相应类型,编译的时候不需要提示错误
declare module 'vue'{
export interface componentCustomProperties{
$mybus:typeof Mit
}
}
//创建Vue应用实例
const app = createApp(App)
//挂载事务总线为全局属性
app.config.globalProperties.$mybus = new mitt()
app.mount('#app')
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2.直接在组件中使用
//发送数据
import {getCurrentInstance} from 'vue'
const instance=getCurrentInstance()
const clickEvent=()=>{
instance?.proxy?.$mybus.emit('自定义事件名称','数据')
}
1
2
3
4
5
6
2
3
4
5
6
//接收数据
import {getCurrentInstance} from 'vue'
const instance=getCurrentInstance()
const clickEvent=()=>{
instance?.proxy?.$mybus.on('自定义事件名称','数据')
}
1
2
3
4
5
6
2
3
4
5
6
# 二.模块化挂载(js写法展示)
1.可以在单独的文件暴露出事件总线对象
// mitt库默认导出的是一个函数,我们需要执行它从而得到事件总线的对象
/* eventbus.js */
// 这里我们在js中暴露这个事件总线对象
import mitt from "mitt";
const emitter = mitt();
export default emitter;
1
2
3
4
5
6
2
3
4
5
6
2.在指定组件中导入并使用它!
// 这里我们导入我们单独写的暴露事件总线对象的js
/* About.vue */
// 模板代码
<button @click="sendHomeContent">send</button>
// 导入事件总线
import emitter from "./utils/eventbus.js";
// methods代码
sendHomeContent(){
// 触发自定义总线why,并传入一个对象
emitter.emit("why",{name:'why',age:19})
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
/* HomeContent.vue */
// 导入事件总线
import emitter from "./utils/eventbus.js";
// 在创建vue实例时,注册why事件总线
created(){
emitter.on("why",msg=>{
console.log("HomeContent接收到得About发送得数据了:",msg);
});
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
# mitt事件总线其他用法
/* HomeContent.vue */
// 导入事件总线
import emitter from "./utils/eventbus.js";
// 在创建vue实例时,注册why事件总线
created(){
emitter.on("why",msg=>{
console.log("HomeContent接收到得About发送得数据了:",msg);
});
// emitter.on的第一个参数如果是 * 代表监听所有的事件触发!
// 这时,回调函数的参数就会有2个,1是事件的类型,2是实际实参
emitter.on("*",(eventType,item)=>{
console.log(`* 监听到的事件类型是:${eventType},接收的参数为:`,item)
})
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 总结:
1:注册并监听自定义事件
emitter.on(eventType,callback)
2:触发自定义事件
emitter.emit(eventType,params)
# mitt的事件取消
1.取消所有的mitt事件
emitter.all.clear()
1
2.取消指定的mitt事件
// 需要取消指定事件的监听,需要将回调定义在外部,类似于setTimeout
function onFoo(){}
emitter.on('foo',onFoo) //监听
emitter.off('foo',onFoo) //取消监听
1
2
3
4
2
3
4