vue-tables-2
Version:
Vue.js 2 grid components
21 lines (20 loc) • 680 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _default = {
name: 'RLChildRow',
props: ['row', 'index'],
inject: ['colspan', 'scopedSlots', 'getChildRowTemplate', 'opts', 'componentsOverride'],
render: function render(h) {
return this.$scopedSlots["default"]({
opts: this.opts(),
childRow: this.getChildRowTemplate(h, this.row, this.index, this.scopedSlots()['child_row']),
colspan: this.colspan(),
"class": this.opts().rowClassCallback ? this.opts().rowClassCallback(this.row) : '',
override: this.componentsOverride.childRow
});
}
};
exports["default"] = _default;