element-plus I hope the table component can add the function of fixing the header, similar to that of the affin component

h5qlskok  于 2022-10-21  发布在  其他
关注(0)|答案(3)|浏览(193)

希望表格组件可以添加表头固定功能,类似affix组件那样

zengzsys

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

hmae6n7t

hmae6n7t2#

I hope the table component can add the function of fixing the header, similar to that of the Affix component

af7jpaap

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;
}

相关问题