希望表格组件可以添加表头固定功能,类似affix组件那样
zengzsys1#
Translation of this issue:
I hope the table component can add the function of fixing the header, similar to that of the affin component
hmae6n7t2#
I hope the table component can add the function of fixing the header, similar to that of the Affix component
af7jpaap3#
You can implement with sticky. maybe this feature will be supported in the future.
.el-table { overflow: visible!important; } .el-table__header-wrapper { position: sticky; top: 0; z-index: 1; }
3条答案
按热度按时间zengzsys1#
Translation of this issue:
I hope the table component can add the function of fixing the header, similar to that of the affin component
hmae6n7t2#
I hope the table component can add the function of fixing the header, similar to that of the Affix component
af7jpaap3#
You can implement with sticky. maybe this feature will be supported in the future.