vue-easytable icon indicating copy to clipboard operation
vue-easytable copied to clipboard

[Feature Request] remove header row

Open rahimramezanian opened this issue 2 years ago • 0 comments

选择要提交 issue 的库

vue-easytable

Issue 类型

Feature

Issue 标题

remove header row

这个功能解决了什么问题?

I would like to remove the header row. I used

cellStyleOption: {
        headerCellClass: ({ column, rowIndex }) => {
          return "table-header-noheader";
        },
      },
.table-header-noheader {
  display: none !important;
}

but still there is a space above table for header. The above code only hide <th> but it should act on <thead><tr>.

你期望的 API 是什么样的?

:showheader="false"

rahimramezanian avatar Jul 17 '22 12:07 rahimramezanian