vue elementUI table表格列动态渲染的案例
Posted tianmiaogongzuoshi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue elementUI table表格列动态渲染的案例相关的知识,希望对你有一定的参考价值。
整个表格动态渲染的列 列数肯定要是同步的
tableHeader 变量取到动态渲染的列数数组
... <el-table-column :label="item" v-for="(item, index) in tableHeader" :key="index"> <template slot-scope="scope"> {{tableData[scope.$index].payTypeAmountList[index] | changeNumber}}元 </el-table-column> ...
scope.$index 同事也能取到表格行的index索引数值
如果需要自定义表头 用:render-header 函数去写就OK
https://blog.csdn.net/sinat_37255207/article/details/106696452
以上是关于vue elementUI table表格列动态渲染的案例的主要内容,如果未能解决你的问题,请参考以下文章