事件广播
Posted 一叶*秋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了事件广播相关的知识,希望对你有一定的参考价值。
1.父组件
<button v-on:click="notify">广播事件</button>
<juesefenpei ref="child"></juesefenpei>
methods: {
notify: function () {
this.$refs.child.parentMsg(‘boonook‘);
},
}
2.子组件
methods:{
parentMsg: function (a) {
alert(a);
}
},
以上是关于事件广播的主要内容,如果未能解决你的问题,请参考以下文章
自定义广播(BroadcastReceiver)事件 --Android开发
java [Intent] Intent片段以启动Activity,Service或发送广播。 #android_snippet #android
Android 事件分发事件分发源码分析 ( Activity 中各层级的事件传递 | Activity -> PhoneWindow -> DecorView -> ViewGroup )(代码片段