vue利用v-for嵌套输出多层对象,分别输出到个表的方法
2019/6/27 7:43:16
本文主要是介绍vue利用v-for嵌套输出多层对象,分别输出到个表的方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
如下所示:
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>规格项</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>规格值</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>
以上这篇vue利用v-for嵌套输出多层对象,分别输出到个表的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持找一找教程网。
这篇关于vue利用v-for嵌套输出多层对象,分别输出到个表的方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26怎么使用 nvm(Node Version Manager)下载并安装指定版本的 Node.js?-icode9专业技术文章分享
- 2024-11-26Vue CLI资料入门教程
- 2024-11-26Vue CLI资料入门教程
- 2024-11-26Vue3+Vite资料:新手入门教程详解
- 2024-11-26Vue3阿里系UI组件资料入门教程
- 2024-11-26Vue3的阿里系UI组件资料入门指南
- 2024-11-26Vue3公共组件资料详解与实战教程
- 2024-11-26Vue3公共组件资料详解与实战教程
- 2024-11-26Vue3核心功能响应式变量资料入门教程
- 2024-11-26Vue3核心功能响应式变量资料详解