代码语言:javascript复制
<el-table-column :label="date" v-for="(date, key) in header" align="center">
<template scope="scope">
{{listDate1[scope.$index][key]}}
</template>
</el-table-column>
表格数据层
代码语言:javascript复制 header: ['姓名', '身份证'],
listDate1: [
// [
// [1, 2, 3],
// [4,5,6]
// ]
],