美文网首页
vue的表格动态渲染

vue的表格动态渲染

作者: 冬天的_太阳 | 来源:发表于2019-10-11 17:30 被阅读0次
           <el-table-column :label="date" v-for="(date, key) in header" align="center">
                                    <template scope="scope">
                                        {{listDate1[scope.$index][key]}}
                                    </template>
          </el-table-column>
    
    

    表格数据层

           header: ['姓名', '身份证'],
                    listDate1: [
                        // [
                        //     [1, 2, 3],
                        //     [4,5,6]
                        // ]
    
                    ],
    

    相关文章

      网友评论

          本文标题:vue的表格动态渲染

          本文链接:https://www.haomeiwen.com/subject/zddxmctx.html