這篇文章將為大家詳細(xì)講解有關(guān)利用Vue父子組件通信怎么實(shí)現(xiàn)一個(gè)todolist功能,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比廣陵網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式廣陵網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋廣陵地區(qū)。費(fèi)用合理售后完善,十載實(shí)體公司更值得信賴。
先上代碼
<body> <div id="root"> <div> <input v-model="inputValue" /> <button @click="handleClick">submit</button> </div> <ul> <todolist v-for="(item,index) of list" :key="index" :content="item" :index="index" @delete="handle" ></todolist> </ul> </div> <script> Vue.component("todolist",{ props: ['content','index'], template: '<li @click="handleDelete">{{content}}</li>', methods: { handleDelete:function(){ this.$emit('delete',this.index) } } }) new Vue({ el:"#root", data: { inputValue:'', list:[] }, methods: { handleClick:function(){ this.list.push(this.inputValue) this.inputValue='' }, handle:function(index){ this.list.splice(index,1) } } }) </script> </body>
創(chuàng)建todolist的基本結(jié)構(gòu)
<div id="root"> <div> <input v-model="inputValue" /> <button @click="handleClick">submit</button> </div> <ul> <todolist v-for="(item,index) of list" :key="index" :content="item" :index="index" @delete="handle" ></todolist> </ul> </div>
在這里我們創(chuàng)建了一個(gè)todolist標(biāo)簽作為父組件,讓它在里面循環(huán)遍歷list作為我們的輸出,同時(shí)定義了一個(gè)delete的監(jiān)聽事件。
接下來在script標(biāo)簽里定義子組件
Vue.component("todolist",{ props: ['content','index'], template: '<li @click="handleDelete">{{content}}</li>', methods: { handleDelete:function(){ this.$emit('delete',this.index) } } })
定義了一個(gè)全局類型的子組件,子組件的props選項(xiàng)能夠接收來自父組件數(shù)據(jù),props只能單向傳遞,即只能通過父組件向子組件傳遞,這里將上面父組件的content和index傳遞下來。
將li標(biāo)簽作為子組件的模板,添加監(jiān)聽事件handleDelete用與點(diǎn)擊li標(biāo)簽進(jìn)行刪除。
在下面定義子組件的handleDelete方法,用this.$emit向父組件實(shí)現(xiàn)通信,這里傳入了一個(gè)delete的event,參數(shù)是index,父組件通過@delete監(jiān)聽并接收參數(shù)
接下來是Vue實(shí)例
new Vue({ el:"#root", data: { inputValue:'', list:[] }, methods: { handleClick:function(){ this.list.push(this.inputValue) this.inputValue='' }, handle:function(index){ this.list.splice(index,1) } } })
handleClick方法實(shí)現(xiàn)每次點(diǎn)擊submit按鈕時(shí)向list里添加值,在每次添加之后將輸入框清空。
而handle方法則是點(diǎn)擊刪除li標(biāo)簽,這里通過接受傳入的index參數(shù)來判斷點(diǎn)擊的是哪一個(gè)li
這是刪除前:
這是刪除后:
總結(jié):
通過點(diǎn)擊子組件的li實(shí)現(xiàn)向外觸發(fā)一個(gè)delete事件,而父組件監(jiān)聽了子組件的delete事件,執(zhí)行父組件的handle方法,從而刪除掉對(duì)應(yīng)index的列表項(xiàng),todolist中的list對(duì)應(yīng)項(xiàng)也會(huì)被刪除掉。
關(guān)于利用Vue父子組件通信怎么實(shí)現(xiàn)一個(gè)todolist功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
網(wǎng)站題目:利用Vue父子組件通信怎么實(shí)現(xiàn)一個(gè)todolist功能
鏈接地址:http://jinyejixie.com/article34/pggcpe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、營(yíng)銷型網(wǎng)站建設(shè)、網(wǎng)站改版、搜索引擎優(yōu)化、移動(dòng)網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)