多维数据怎么循环el-table-column?

列表需要循环一个数组,数组里的对象有子数组也需要循环到表头和值,代码如下。这样写报错,循环不出来怎么办?

 <el-table :data="rowlist" border>

<template slot-scope="scope">

<el-table-column

v-for="(item, index) in scope.row.specs"

:key="index"

:label="item.name"

:prop="item.value"

align="center"

width="120"

>

<template>

<el-input v-model="item.value" clearable size="small" />

</template>

</el-table-column>

</template>

</el-table>


回答:

多维数据怎么循环el-table-column?
这里el-table不能直接嵌套template 不能这么用
你这种需求做过一个, 将两个数组拆开了, 表头一个, 数据一个

以上是 多维数据怎么循环el-table-column? 的全部内容, 来源链接: utcz.com/p/933737.html

回到顶部