vue-easytable
vue-easytable copied to clipboard
[Feature Request] remove header row
选择要提交 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"