elelment ui 动态渲染表头和表格数据

本文介绍了如何使用Element UI的el-table组件来创建一个动态表格,展示了如何配置表头(columnData)、数据(columnList)以及自定义单元格内容。重点讲解了prop、label和width属性的应用,适合前端开发者进行表格布局实践。
摘要由CSDN通过智能技术生成
 <el-table :data="columnList" :height="400" :loading="tableLoading" stripe border highlight-current-row>
          <el-table-column v-for="(item, index) in columnData" :key="index" :prop="item.prop" :label="item.label" :width="item.width" show-overflow-tooltip>
	          <template slot-scope="scope">
	            <span>{{scope.row[item.prop]}}</span>
	          </template>
          </el-table-column>
        </el-table>
/**
columnData :表头数据
   lable:对应的是表头名字
   prop:对应的是表头要赋予的值
   width:设置表头的宽度
*/
this.columnData = [
        {label:'员工名称', prop:'userName',width:120},
        { label:'分配金额', prop:'allotMoney',width:120},
        {label:'部门', prop:'deptPath',width:'auto'},
      ]
   /**
   columnList:表格数据
   */   
  columnList:[]    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值