어셈블리 비 부자 간 전송 값

2079 단어
비 부자 구성 요소 간의 통신



    
    Document


       
var bus=new Vue(); Vue.component('child',{ 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 }) } }) </body> </html></code></pre> </article> </div> </div> </div> <!--PC WAP --> <div id="SOHUCS" sid="1241958173393408000"></div> <script type="text/javascript" src="/views/front/js/chanyan.js">

좋은 웹페이지 즐겨찾기