vue中父子組件的參數傳遞和應用示例
子組件如下,把要傳給給父親的值放在props中
template> <!--底部導航--> <div class='index-bbar'> <ul > <li v-for='(item,index) in liAry' :class='index==licurrent?’active’:’’'> <router-link :to='item.linkURl'><span class='flex alignc flexdc'> <img :src='http://www.piao2010.com/bcjs/index==licurrent?require(’../../’ + item.urlActive):require(’../../’ + item.url)' ><span>{{item.title}}</span></span> </router-link> </li> </ul> </div></template><script>export default { name: ’Bottom’, data () { return { } }, props:[’liAry’,’licurrent’], methods: { }}</script><style scoped>@import '../../assets/public/css/top.css';@import '../../assets/public/css/bottom.css';</style>
父組件的調用的三部曲
首先引入子組件
import Bottom from ’@/components/public/Bottom’;
注入組件在components中注入
components: {Bottom}
在父親中應用
<template><Bottom v-bind:liAry=’lidata’ v-bind:licurrent=’guidecurrent’></Bottom></template>
到這里就結束了,是不是賊快
2.子組件傳值給父組件父組件在組件上定義了一個自定義事件childFn,事件名為parentFn用于接受子組件傳過來的message值。
<!-- 父組件 --><template> <div class='test'> <test-com @childFn='parentFn'></test-com> <br/> 子組件傳來的值 : {{message}} </div></template><script>export default { // ... data: { message: ’’ }, methods: { parentFn(payload) { this.message = payload; } }}</script>
子組件是一個buttton按鈕,并為其添加了一個click事件,當點擊的時候使用$emit()觸發事件,把message傳給父組件
<!-- 子組件 --><template> <div class='testCom'> <input type='text' v-model='message' /> <button @click='click'>Send</button></div></template><script>export default { // ... data() { return { // 默認 message: ’我是來自子組件的消息’ } }, methods: { click() { this.$emit(’childFn’, this.message); } } }</script>
在子組件向父親傳值的時候,不可用router-link,不然接受不到父親定義的函數
以上就是vue中父子組件的參數傳遞和應用示例的詳細內容,更多關于vue中父子組件的參數傳遞的資料請關注好吧啦網其它相關文章!
相關文章:
1. ThinkPHP5 通過ajax插入圖片并實時顯示(完整代碼)2. ASP.NET MVC通過勾選checkbox更改select的內容3. Android實現圖片自動切換功能(實例代碼詳解)4. jsp+mysql實現網頁的分頁查詢5. javascript xml xsl取值及數據修改第1/2頁6. 存儲于xml中需要的HTML轉義代碼7. 使用AJAX(包含正則表達式)驗證用戶登錄的步驟8. 解決Python paramiko 模塊遠程執行ssh 命令 nohup 不生效的問題9. JavaScript Tab菜單實現過程解析10. Python使用oslo.vmware管理ESXI虛擬機的示例參考
