vue的表格动态渲染

2019-10-14 16:16:32 浏览数 (1)

代码语言: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]
                    // ]

                ],

0 人点赞