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

  • 自带表格
    element-ui table-自定义表格某列的表头样式或者功能_第1张图片
  • 自定义表格某列的表头样式或者功能
 <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>


你可能感兴趣的:(UI组件二改,elementui,前端,ui,javascript)