您好,登錄后才能下訂單哦!
父組件如何給子組件傳值
使用props
舉個例子:
子組件:fromTest.vue,父組件 app.vue
fromTest.vue
<template> <h3>{{title}}</h3> //title必須是父組件傳遞的 </template> <script> export default (){ props:["title"] //可以是數組,也可以是對象 //如何對title進行校驗 //props:{ // type:String,required:true //如果父組件不傳值就會報錯 //} } </script>
父組件 app.vue
<template> <from-test title = "你好 "></from-test> //1.指定值 //<from-test :title = "titleVar "></from-test> //2.動態傳值 titleVar 是變量 </template> <script> export default (){ data(){ titleVar :'你好' //動態傳值就代表數據這里需要定義titleVar } } </script>
子組件如何給父組件傳值
事件,$emit
子組件
button.vue
<template> <button @click='handClick'></button> </template> <script> export default(){ methods(){ handClick(){ this.$emit(lalala,{message:"heihei"}) //lalala是函數名稱,后面是想要傳遞的值 } } } </script>
父組件
app.vue
<template> <k-button @lalala = handClick></k-button> </template> <script> import KButton form './components/KButton' //自己要記得導入組件,引用組件名稱 export default(){ components(){ KButton } methods(){ handClick(obj){ console.log(obj) //點擊button,控制臺就收到值了 } } } </script>
總結
以上所述是小編給大家介紹的vue 父組件給子組件傳值子組件給父組件傳值的實例代碼 ,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。