简单记一次Vue循环遍历Json数据,然后填充到Table表格中,展示到前端的代码: async getData(id) { const res = await this.$store.api.newReq('/xxx/xxx/xxx/' + id).get(); if (res.code === 0) { this.data = res.data; } }, 下面是定义变量: data: { base: {}, baseList:[], }, 下面是table的表格展示: <table cla…