Table-column Scoped Slot自定义

本文详细介绍了如何在Element-UI的el-table-column组件中使用header和defaultscoped-slot来灵活定制表格的表头和单元格内容,包括结合使用的情况。

Element-UI Table-column Scoped Slot 自定义

el-table-column组件提供了多个scoped-slot, 可以更加灵活地自定义列的内容

  • header:用于自定义表头的内容
<el-table :data="tableData">
  <el-table-column prop="name" label="姓名"></el-table-column>
  <el-table-column prop="age" label="年龄">
    <!-- 自定义表头内容 -->
    <template slot="header" slot-scope="scope">
      <span>自定义表头</span>
    </template>
  </el-table-column>
</el-table>

  • default:用于自定义单元格的内容
<el-table :data="tableData">
  <el-table-column prop="name" label="姓名"></el-table-column>
  <el-table-column prop="age" label="年龄">
    <!-- 自定义单元格内容 -->
    <template slot-scope="scope">
      <span>{{ scope.row.age }}</span>
      <el-button @click="edit(scope.row)">编辑</el-button>
    </template>
  </el-table-column>
</el-table>

  • headerdefault 的结合使用
<el-table :data="tableData">
  <el-table-column prop="name" label="姓名">
    <!-- 自定义表头和单元格内容 -->
    <template slot="header" slot-scope="scope">
      <span>自定义表头</span>
    </template>
    <template slot-scope="scope">
      <span>{{ scope.row.name }}</span>
      <el-button @click="edit(scope.row)">编辑</el-button>
    </template>
  </el-table-column>
</el-table>
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值