您好,登錄后才能下訂單哦!
使用vue如何嵌套子組件?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
如何把一個(gè)子組件comment.vue放到一個(gè)組件中去
1、先創(chuàng)建一個(gè)單獨(dú)的 comment.vue 組件模板
<template> <div class="cmt-container"> <h4>發(fā)表評(píng)論</h4> <hr> <textarea placeholder="請(qǐng)輸入要BB的內(nèi)容(最多吐槽120字)" maxlength="120"></textarea> <mt-button type="primary" size="large">發(fā)表評(píng)論</mt-button> <div class="cmt-list"> <div class="cmt-item"> <div class="cmt-title"> 第1樓 用戶:匿名用戶 發(fā)表時(shí)間:2012-12-12 12:12:12 </div> <div class="cmt-body"> 鋤禾日當(dāng)午 符合 </div> </div> <div class="cmt-item"> <div class="cmt-title"> 第1樓 用戶:匿名用戶 發(fā)表時(shí)間:2012-12-12 12:12:12 </div> <div class="cmt-body"> 鋤禾日當(dāng)午 符合 </div> </div> <div class="cmt-item"> <div class="cmt-title"> 第1樓 用戶:匿名用戶 發(fā)表時(shí)間:2012-12-12 12:12:12 </div> <div class="cmt-body"> 鋤禾日當(dāng)午 符合 </div> </div> </div> <mt-button type="danger" size="large" plain>加載更多</mt-button> </div> </template> <script> </script> <style lang="scss" scoped> .cmt-container{ h4{ font-size: 18px; } textarea{ font-size: 14px; height: 85px; margin: 0; } .cmt-list{ margin: 5px 0; .cmt-item{ font-size: 13px; .cmt-title{ background-color: #ccc; } } .cmt-body{ line-height: 35px; text-indent: 2em; //縮進(jìn) } } } </style>
2、在需要使用組件的 頁面中,先手動(dòng)導(dǎo)入 comment 組件
+ import comment from './comment.vue'
3、在父組件中,使用'components' 屬性,將剛才導(dǎo)入的 comment 組件,注冊(cè)為自己的 子組件
4、將注冊(cè)子組件時(shí)候的,注冊(cè)名稱,以 標(biāo)簽形式,在頁面中引用即可
補(bǔ)充知識(shí):vue怎么將一個(gè)組件引入另一個(gè)組件?
項(xiàng)目是由的vue-cli搭建
1.這里有兩個(gè)組件,需求是把newComponents.vue里面的東西引入到helloWorld里面
2.index.js里面的配置
3.newComponents里面的內(nèi)容
4.怎么將newComponents引入到helloWorld呢?
5.頁面展示
關(guān)于使用vue如何嵌套子組件問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(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)容。