element自定义表头内容

实现效果:

想要让表头回车
在这里插入图片描述

实现代码

el-table-column需要去掉label和prop属性, 然后使用插槽 slot。
prop也可不去掉。
如果需要传参,header还是需要加上slot-scope=“scope”。

<el-table-column align="center"  prop="contact">
	<template slot="header" slot-scope="scope">
		联系人<br>联系电话
	</template>
	<template slot-scope="scope">
		<span>{
    
    {
    
    scope.row...}}</span>
	</template>
</el-table-column>

猜你喜欢

转载自blog.csdn.net/weixin_48998573/article/details/129696135