0👍
In the resource https://cdn.jsdelivr.net/npm/vuetify@3.2.3/dist/vuetify-labs.css
there’s a rule that is targeting only the last table row (tr
) in the thead
.
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
border-bottom: 0px !important;
position: sticky;
top: 0;
}
If you could replicate that rule and assign it to the thead
tag that could fix your problem.
thead {
border-bottom: 0px !important;
position: sticky;
top: 0;
}
In other words, you need to make the whole thead
sticky, not just the th
- [Vuejs]-How to translate a property of and array of objects using vue-i18n
- [Vuejs]-Nuxt lazy load plugin with vue 2.6.12
Source:stackexchange.com