真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Vue2中怎么實(shí)現(xiàn)管理組件通信

今天就跟大家聊聊有關(guān)Vue2中怎么實(shí)現(xiàn)管理組件通信,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

我們提供的服務(wù)有:網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、城北ssl等。為1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的城北網(wǎng)站制作公司

具體內(nèi)容如下

 
 
 
  
 Vue2-單一事件管理組件通信 
  
  
 
 //準(zhǔn)備一個(gè)空的實(shí)例對象 
 var Event = new Vue(); 
 
 //組件A 
 var A = { 
  template: ` 
   
      我是A組件的數(shù)據(jù)->{{a}}           
    `,    methods: {     send () {      Event.$emit("a-msg", this.a);     }    },    data () {     return {      a: "我是a組件中數(shù)據(jù)"     }    }   };   //組件B   var B = {    template: `     
      我是B組件的數(shù)據(jù)->{{a}}           
    `,    methods: {     send () {      Event.$emit("b-msg", this.a);     }    },    data () {     return {      a: "我是b組件中數(shù)據(jù)"     }    }   };   //組件C   var C = {    template: `     
      

我是C組件

      接收過來A的數(shù)據(jù)為: {{a}}      
      接收過來B的數(shù)據(jù)為: {}     
    `,    mounted () {     //接收A組件的數(shù)據(jù)     Event.$on("a-msg", function (a) {      this.a = a;     }.bind(this));       //接收B組件的數(shù)據(jù)     Event.$on("b-msg", function (a) {      this.b = a;     }.bind(this));    },    data () {     return {      a: "",      b: ""     }    }   };   window.onload = function () {    new Vue({     el: "#box",     components: {      "dom-a": A,      "dom-b": B,      "dom-c": C     }    });   };                                
     

看完上述內(nèi)容,你們對Vue2中怎么實(shí)現(xiàn)管理組件通信有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


網(wǎng)站標(biāo)題:Vue2中怎么實(shí)現(xiàn)管理組件通信
網(wǎng)址分享:http://weahome.cn/article/jpedhh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部