本篇文章為大家展示了如何使用todolist入門(mén)全局組件和局部組件,代碼簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
創(chuàng)新互聯(lián)專(zhuān)注于黃龍網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供黃龍營(yíng)銷(xiāo)型網(wǎng)站建設(shè),黃龍網(wǎng)站制作、黃龍網(wǎng)頁(yè)設(shè)計(jì)、黃龍網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造黃龍網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供黃龍網(wǎng)站排名全網(wǎng)營(yíng)銷(xiāo)落地服務(wù)。
在理解入門(mén)全局組件和局部組件之前,我們有必要了解什么是“組件化”的概念。
組件化可以理解為頁(yè)面的一個(gè)組件或者一個(gè)部分,例如下圖,紅框部分可以劃分成一個(gè)組件,我們只需要寫(xiě)好一個(gè)組件,然后循環(huán)數(shù)據(jù)即可。這個(gè)組件可能在在首頁(yè)、列表頁(yè)等任何地方使用,并不僅僅局限于當(dāng)前頁(yè)面。
我們?nèi)匀灰宰詈?jiǎn)單的todolist入門(mén)Vue的全局組件和局部組件。我們把<li></li>拿出來(lái)作為一個(gè)組件,那么我們分別看看全局組件和局部組件分別如何實(shí)現(xiàn)。
全局組件
<div id="root"> <div> <input v-model="inputValue" /> <button @click="handleSubmit">提交</button> </div> <ul> <todo-item v-bind:content="item" v-for="item in list"></todo-item> </ul> </div> <script> Vue.component("TodoItem",{ props:['content'], template:"<li>{{content}}</li>" }) new Vue({ el:"#root", data:{ inputValue:'', list:[] }, methods:{ handleSubmit:function(){ this.list.push(this.inputValue) this.inputValue = '' //每次提交后清空 } } }) </script>
我們使用Vue.component()來(lái)定義一個(gè)全局組件,那么這個(gè)組件在當(dāng)前頁(yè)面均可使用,而不僅僅是id="root"中。
Vue.component("TodoItem",{ props:['content'], template:"<li>{{content}}</li>" })
TodoItem是組件名稱,在html中<todo-item></todo-item>使用
props是接收參數(shù)
template定義組件樣式,或者通俗說(shuō)模板
同時(shí)還需要注意這里有一個(gè)父組件向子組件傳值:
todo-item v-bind:content="item" v-for="item in list"></todo-item>
我們來(lái)分析,list是輸入父組件的,todo-item屬于子組件,list中循環(huán)的數(shù)據(jù)item需要傳遞給全局組件,則用v-bind:content="item"傳遞,其中content就是子組件接收的數(shù)據(jù),那么子組件定義接收props:['content']后,就可以template:"<li>{{content}}</li>"用content顯示數(shù)據(jù)了。
局部組件
同樣的效果,我們使用局部組件來(lái)試試。
<div id="root"> <div> <input v-model="inputValue" /> <button @click="handleSubmit">提交</button> </div> <ul> <todo-item v-bind:content="item" v-for="item in list"></todo-item> </ul> </div> <script> var TodoItem={ props:['content'], template:"<li>{{content}}</li>" } new Vue({ el:"#root", data:{ inputValue:'', list:[] }, components:{ 'TodoItem':TodoItem }, methods:{ handleSubmit:function(){ this.list.push(this.inputValue) this.inputValue = '' //每次提交后清空 } } }) </script>
和全局組件不同的是,我們通過(guò)var TodoItem={}定義局部組件,定義后還要在new Vue中進(jìn)行聲明
components:{ 'TodoItem':TodoItem },
那么局部組件僅僅在id="root"中使用。
好了,以上就是todolist實(shí)例帶你入門(mén)全局組件和局部組件,升職加薪,Vue技能趕緊get起來(lái)吧!
上述內(nèi)容就是如何使用todolist入門(mén)全局組件和局部組件,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)站題目:如何使用todolist入門(mén)全局組件和局部組件
分享路徑:http://m.rwnh.cn/article28/igjicp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、移動(dòng)網(wǎng)站建設(shè)、App設(shè)計(jì)、面包屑導(dǎo)航、自適應(yīng)網(wǎng)站、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)
聲明:本網(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í)需注明來(lái)源: 創(chuàng)新互聯(lián)