UNPKG

custom-bootstrap-vue

Version:

Custom version of bootstrap-vue created for providing specific theme to a particular project

34 lines (28 loc) 982 B
import { isFunction } from '../../../utils/inspect' import { BTr } from '../tr' const slotName = 'top-row' export default { methods: { renderTopRow() { const h = this.$createElement // Add static Top Row slot (hidden in visibly stacked mode as we can't control the data-label) // If in *always* stacked mode, we don't bother rendering the row if (!this.hasNormalizedSlot(slotName) || this.stacked === true || this.stacked === '') { return h() } const fields = this.computedFields return h( BTr, { key: 'b-top-row', staticClass: 'b-table-top-row', class: [ isFunction(this.tbodyTrClass) ? this.tbodyTrClass(null, 'row-top') : this.tbodyTrClass ], attrs: isFunction(this.tbodyTrAttr) ? this.tbodyTrAttr(null, 'row-top') : this.tbodyTrAttr }, [this.normalizeSlot(slotName, { columns: fields.length, fields })] ) } } }