组件通信 eventtBus

Posted guangzhou11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了组件通信 eventtBus相关的知识,希望对你有一定的参考价值。

平级组件的通信 一个全局发布订阅模式,它是挂载到全局的

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>组件通信 &bus</title>
    <script src="./node_modules/vue/dist/vue.js"></script>
</head>
<body>
    <div id="app">
       <children1></children1>
       <children2></children2>
    </div>
</body>
<script>
    //发布订阅模式
    //适合简单的数据流
     Vue.prototype.$bus = new Vue();
    Vue.component(children1,
     template:`<div><span>children1</span></div>`,
     mounted() 
         this.$bus.$on(,(food)=>
             console.log(food)
         ) 
     ,
   )
   Vue.component(children2,
     template:`<div><span>children2</span></div>`,
     mounted() 
         this.$bus.$emit(,月饼)
     ,
   )
   let  vm = new Vue(
         el:#app,
   )
   //hello
</script>
</html>

 

以上是关于组件通信 eventtBus的主要内容,如果未能解决你的问题,请参考以下文章

vue组件之间的通信, 父子组件通信,兄弟组件通信

React 父子组件通信

VUE:组件与组件之间的通信

Angular组件通信和指令的使用

vue父子组件之间的通信

React组件间通信