您好,登錄后才能下訂單哦!
小編給大家分享一下vue如何利用v-for嵌套輸出多層對(duì)象,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
如下所示:
specifications:[ { specificationName:"顏色", specificationItem:[ {value:"黃色"}, {value:"黑色"} ] } ]
<table class="table table-bordered table-hover table-item spggdytable" id="ggxtable" v-show="isAddSpecifications"> <thead> <tr> <th>排序</th> <th>規(guī)格項(xiàng)</th> <th>操作</th> </tr> </thead> <tbody> <tr v-for="(item,index) in specifications"> <td>{{index}}</td> <td>{{item.specificationName}}</td> <td> <a href='#'> <img src='../img/common_edit@25.png' alt='修改'></a> <a href='#'><img src='../img/common_del@25.png' alt='刪除'></a> </td> </tr> </tbody> </table> <table class="table table-bordered table-hover table-item spggdytable" id="ggztable" v-show="isAddSpecifications"> <thead> <tr> <th>規(guī)格值</th> <th>操作</th> </tr> </thead> <tbody v-for="(item,index) in specifications"> <tr v-for="(part,n) in item.specificationItem"> <td>{{part.value}}</td> <td> <a href='#'> <img src='../img/common_edit@25.png' alt='修改'></a> <a href='#'><img src='../img/common_del@25.png' alt='刪除'></a> </td> </tr> </tbody> </table>
看完了這篇文章,相信你對(duì)“vue如何利用v-for嵌套輸出多層對(duì)象”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(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)容。