在main.js里面设置data{eventHub:new Vue() }
new Vue({ el: '#app', router, store, template: '<App/>', components: { App }, data:{ eventHub:new Vue() // 在main.js设置所有组件都能用调用 }, })
我们再组件一设置一个事件调用组件二的事件,传递数据给组件二
<template> <div v-on:click="on()"></div> </template> <script> export default { data(){ return{ datas:"数据" } }, methods:{ on(){ this.$root.eventHunb.$emit("eventName",this.datas) //$emit是触发事件,当我们点击on事件的时候,$emit会触发其他组件的eventName事件, 把this.datas数据传递到其他组件中 } } } </scrpt>
组件二被触发的事件,接受的参数
<template> <div>{{datas}}</div> </template> <script> exports default{ data(){ return{ datas:"" } }, created(){ //组件一跟组件二都要绑定相同的eventName this.$root.eventHub.$on("eventName",(tar) = > { this.fn(tar) //$on是监听事件,如果组件一得$emit触发了,$on就会触发this.fn事件 }) } methods:{ fn:function(tar){ this.datas = tar } } } </script>
以上这篇vue兄弟组件传递数据的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持菜鸟教程(cainiaojc.com)。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#cainiaojc.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。