vue-tables-2
Version:
Vue.js 2 grid components
21 lines (20 loc) • 733 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _default = {
name: 'RLHeadingRow',
inject: ['opts', 'theme', 'hasChildRow', 'allColumns', 'componentsOverride'],
render: function render() {
return this.$scopedSlots["default"]({
override: this.componentsOverride.headingsRow,
opts: this.opts(),
columns: this.allColumns(),
hasChildRow: this.hasChildRow,
childRowTogglerFirst: this.hasChildRow() && this.opts().showChildRowToggler && this.opts().childRowTogglerFirst,
childRowTogglerLast: this.hasChildRow() && this.opts().showChildRowToggler && !this.opts().childRowTogglerFirst
});
}
};
exports["default"] = _default;