大概代码是这样的:
调用element ui table的renderHeader接口

methods: {
    renderHeader(h, data) {
        let column = data.column;
        let label = column.label;
        switch(label) {
            case '登录人数':
                tip = '登录本系统的人数,包括移动端,网页端'
            case '登录次数':
                tip = '登录本系统的次数,包括移动端,网页端'
            defalult:
                tip = '';
        }
        return ('<el-tooltip content={tip} placement='top-start'>
             <span>表头标题</span>
        </el-tooltip>')
    }
}

soso辉
84 声望2 粉丝