element-ui table-自定义表格某列的表头样式或者功能

2024-01-02 20:51:22
  • 自带表格
    在这里插入图片描述
  • 自定义表格某列的表头样式或者功能
 <el-table>
 	<el-table-column :prop="date">
 		//自定义表身每行数据
 		<template slot-scope="scope">
        	{{scope.row[scope.column.label] === '-' ? '-' : scope.row[scope.column.label]}}
        </template>
        
        //自定义表头
        <template slot='header'  slot-scope="scope">
			<el-button type="primary" @click="filterTest(scope.column)">筛选</el-button>
        </template>
     </el-table-column>
</el-table>


文章来源:https://blog.csdn.net/m0_45011929/article/details/135340433
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。