您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關使用vue-for指令怎么實現循環嵌套,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
具體如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> *{ margin: 0; padding: 0; list-style: none; } </style> </head> <body> <table id="app" border="1" cellspacing="0" cellpadding="0"> <tr> <td>父循環第幾次</td> <td>子循環第幾次</td> <td>json的第幾條數據</td> <td>數值</td></tr> <tbody v-for="x,index in parentList"> <tr v-for="i,index2 in x.childList"> <td>{{index}}</td> <td>{{index2}}</td> <td>{{i.index}}</td> <td>{{i.childName}}</td> </tr> </tbody> </table> </body> <script src="https://cdn.bootcss.com/vue/2.4.4/vue.min.js"></script> <script> const app=new Vue({ el:"#app", data:{ parentList: [{ childList: [{ index: 1, childName: "第一個節點" }, { index: 2, childName: "第一個節點" }, { index: 3, childName: "第一個節點" }, { index: 4, childName: "第一個節點" }, { index: 5, childName: "第一個節點" }] }, { childList: [{ index: 6, childName: "第二個節點" }, { index: 7, childName: "第二個節點" }, { index: 8, childName: "第二個節點" }, { index: 9, childName: "第二個節點" }, { index: 10, childName: "第二個節點" }] }, { childList: [{ index: 11, childName: "第三個節點" }, { index: 12, childName: "第三個節點" }, { index: 13, childName: "第三個節點" }, { index: 14, childName: "第三個節點" }, { index: 15, childName: "第三個節點" }] }] } }) </script> </html>
關于使用vue-for指令怎么實現循環嵌套就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。