码迷,mamicode.com
首页 > 其他好文 > 详细

组件通信 eventtBus

时间:2019-09-18 11:40:06      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:模式   console   content   com   one   简单的   log   head   app   

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

<!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

标签:模式   console   content   com   one   简单的   log   head   app   

原文地址:https://www.cnblogs.com/guangzhou11/p/11540050.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!