v-tables-3
Version:
Vue.js 3 grid components
19 lines (15 loc) • 380 B
JavaScript
;
module.exports = {
methods: {
getThStyle: function getThStyle() {
var cls = '';
if (this.opts().stickyHeader) {
cls += 'position:sticky; top:0;';
}
if (this.opts().stickyHeaderBackground) {
cls += "background:".concat(this.opts().stickyHeaderBackground, ";");
}
return cls;
}
}
};