子組件) 步驟: ①父組..."/>
您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了vue組件父與子通信的具體代碼,供大家參考,具體內(nèi)容如下
一、組件間通信(父組件 --> 子組件)
步驟:
①父組件在調(diào)用子組件 傳值
<child-component myValue="123"> </child-component>
②在子組件中 獲取父組件傳來的值
Vue.component('child-component',{ props:['myValue'], template:'' })
代碼1:
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>父?jìng)髯?lt;/title> <script src="js/vue.js"></script> </head> <body> <div id="container"> <p>{{msg}}</p> <parent-component></parent-component> </div> <script> // 在vue中一切都是組件 //父?jìng)髯? Vue.component("parent-component",{ data:function(){ return { gift:"傳家寶" } }, template:` <div> <h2>這是父組件</h2> <hr> <child-component v-bind:myValue="gift"></child-component> </div> ` }) Vue.component("child-component",{ props:["myValue"], template:` <div> <h2>這是子組件</h2> <p>{{"父?jìng)鬟f的值:"+myValue}}</p> </div> ` }) new Vue({ el:"#container", data:{ msg:"Hello VueJs" } }) </script> </body> </html>
myValue是屬性名,必須都一樣……拿data中的用v-bind:或者:
props是property屬性,是個(gè)數(shù)組
代碼2:
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>父子之間通信練習(xí)</title> <script src="js/vue.js"></script> </head> <body> <div id="container"> <p>{{msg}}</p> <my-login></my-login> </div> <script> /* 登錄窗口 創(chuàng)建4個(gè)組件,分別是my-label my-input my-button my-login(復(fù)合組件) */ Vue.component("my-label",{ props:["myLabel"], template:` <div> <label>{{myLabel}}</label> </div> ` }) Vue.component("my-input",{ template:` <div> <input type="text"/> </div> ` }) Vue.component("my-button",{ props:["myButton"], template:` <div> <button>{{myButton}}</button> </div> ` }) //復(fù)合組件 Vue.component("my-login",{ data:function(){ return { uname:"用戶名", upwd:"密碼", login:"登錄", register:"注冊(cè)" } }, template:` <div> <my-label v-bind:myLabel="uname"></my-label> <my-input></my-input> <my-label v-bind:myLabel="upwd"></my-label> <my-input></my-input> <my-button v-bind:myButton="login"></my-button> <my-button v-bind:myButton="register"></my-button> </div> ` }) new Vue({ el:"#container", data:{ msg:"Hello VueJs" } }) </script> </body> </html>
代碼3:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <script src="js/vue.js"></script> <title></title> </head> <body> <div id="container"> <my-login></my-login> </div> <script> Vue.component('my-label',{ props:['labelName'], template:'<label>{{labelName}}</label>' }) Vue.component('my-input',{ props:['tips'], template:'<input type="text" :placeholder="tips"/>' }) Vue.component('my-button',{ props:['btnName'], template:'<button>{{btnName}}</button>' }) Vue.component('my-login',{ template:` <form> <my-label labelName="用戶名"></my-label> <my-input tips="請(qǐng)輸入用戶名"></my-input> <br/> <my-label labelName="密碼"></my-label> <my-input tips="請(qǐng)輸入密碼"></my-input> <br/> <my-button btnName="登錄"></my-button> <my-button btnName="注冊(cè)"></my-button> </form> ` }) new Vue({ el: '#container', data: { msg: 'Hello Vue' } }) </script> </body> </html>
要拿到data中的數(shù)據(jù)就要v-bind,否則就不用。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。