el-table自定义表头label

Posted dianzan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了el-table自定义表头label相关的知识,希望对你有一定的参考价值。

https://www.cnblogs.com/chip-gan/p/12457240.html

<el-table-column :label="地址" :render-header="renderHeader"></el-table-column> 

在methods添加renderHeader方法(可以参考elementUI官网rtable详解)

methods: {
    renderHeader(h) {
        return (
               <div>
                    <span>地址</span>
                    <span style="font-size:12px;">(具体到区县)</span>
               </div>
            ) 
       }
}

 

以上是关于el-table自定义表头label的主要内容,如果未能解决你的问题,请参考以下文章

ElementUI中table表格自定义表头Tooltip文字提示

ElementUI中table表格自定义表头Tooltip文字提示

ElementUI中table表格自定义表头Tooltip文字提示

element-ui自定义table表头,render-header使用

Vue 动态表格+插入自定义表头

Vue 动态表格+插入自定义表头