您好,登錄后才能下訂單哦!
使用vue如何嵌套子組件?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
如何把一個子組件comment.vue放到一個組件中去
1、先創建一個單獨的 comment.vue 組件模板
<template> <div class="cmt-container"> <h4>發表評論</h4> <hr> <textarea placeholder="請輸入要BB的內容(最多吐槽120字)" maxlength="120"></textarea> <mt-button type="primary" size="large">發表評論</mt-button> <div class="cmt-list"> <div class="cmt-item"> <div class="cmt-title"> 第1樓 用戶:匿名用戶 發表時間:2012-12-12 12:12:12 </div> <div class="cmt-body"> 鋤禾日當午 符合 </div> </div> <div class="cmt-item"> <div class="cmt-title"> 第1樓 用戶:匿名用戶 發表時間:2012-12-12 12:12:12 </div> <div class="cmt-body"> 鋤禾日當午 符合 </div> </div> <div class="cmt-item"> <div class="cmt-title"> 第1樓 用戶:匿名用戶 發表時間:2012-12-12 12:12:12 </div> <div class="cmt-body"> 鋤禾日當午 符合 </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; //縮進 } } } </style>
2、在需要使用組件的 頁面中,先手動導入 comment 組件
+ import comment from './comment.vue'
3、在父組件中,使用'components' 屬性,將剛才導入的 comment 組件,注冊為自己的 子組件
4、將注冊子組件時候的,注冊名稱,以 標簽形式,在頁面中引用即可
補充知識:vue怎么將一個組件引入另一個組件?
項目是由的vue-cli搭建
1.這里有兩個組件,需求是把newComponents.vue里面的東西引入到helloWorld里面
2.index.js里面的配置
3.newComponents里面的內容
4.怎么將newComponents引入到helloWorld呢?
5.頁面展示
關于使用vue如何嵌套子組件問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。