美文网首页
2018-09-23组件(非父子之间的通信)

2018-09-23组件(非父子之间的通信)

作者: 好多好多鱼z | 来源:发表于2018-09-23 19:38 被阅读0次

非父子之间的通信

先声明一个中间值
var bus= new Vue
发送方用$emit()
接收方用$on()
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
   <div id='app'>
       <child></child>
       <son></son>
   </div>
    <script src='js/vue.js'></script>
    <script>
      var bus=new Vue();  
        
      Vue.component('child',{//a
          template:`
             <div>
                <h2>我是child组件</h2>
                <button @click='sendMsg'>发送数据</button>
             </div>
         `,
          data:function(){
              return{
                  msg:'我是child组件中的数据,要传给son组件'
              }
          },
          methods:{
              sendMsg:function(){//发送数据
                 bus.$emit('send',this.msg)  
              }
          }
      })
      
      Vue.component('son',{//b
          template:`
           <div>
                <h2>我是son组件</h2>
                <a>{{mess}}</a>
           </div>
         `,
          data:function(){
             return{
                 mess:''
             }
          },
          mounted:function(){
            bus.$on('send',msg=>{
                console.log(this);
                this.mess=msg
            })  
              
          }
          
          
      })
        
        
      new Vue({
          el:'#app'
      })
    </script>
</body>
</html>
QQ拼音截图未命名.png

点击发送数据son组件中会显示来自child组件中来的值
使用了箭头函数=>用来指向组件中的内容

相关文章

网友评论

      本文标题:2018-09-23组件(非父子之间的通信)

      本文链接:https://www.haomeiwen.com/subject/wseqoftx.html