To implement a sticky header in a table using Vue.js, you can first create a CSS class for the table container with a fixed height and "overflow: auto" property to enable scrolling. Then, add a "position: sticky
2 changes: 1 addition & 1 deletion 2 packages/web-vue/components/table/__demo__/sticky.md Original file line numberDiff line numberDiff line change @@ -18,7 +18,7 @@ Set the header suction via `sticky-header`. The calculation container for the to ```vue <template> <a-table :...
Hello, I need a table header to be freeze and content scroll-able. sticky-header property works fine, but it sets fixed table height which makes the table either unnecessary short on bigger height screens, or scrolls the whole page conte...