UNPKG

bootstrap-vue

Version:

With more than 85 components, over 45 available plugins, several directives, and 1000+ icons, BootstrapVue provides one of the most comprehensive implementations of the Bootstrap v4 component and grid system available for Vue.js v2.6, complete with extens

46 lines (42 loc) 1.61 kB
import { extend } from '../../../vue'; import { PROP_TYPE_ARRAY_OBJECT_STRING, PROP_TYPE_BOOLEAN, PROP_TYPE_STRING } from '../../../constants/props'; import { SLOT_NAME_CUSTOM_FOOT } from '../../../constants/slots'; import { makeProp } from '../../../utils/props'; import { BTfoot } from '../tfoot'; // --- Props --- export var props = { footClone: makeProp(PROP_TYPE_BOOLEAN, false), // Any Bootstrap theme variant (or custom) // Falls back to `headRowVariant` footRowVariant: makeProp(PROP_TYPE_STRING), // 'dark', 'light', or `null` (or custom) footVariant: makeProp(PROP_TYPE_STRING), tfootClass: makeProp(PROP_TYPE_ARRAY_OBJECT_STRING), tfootTrClass: makeProp(PROP_TYPE_ARRAY_OBJECT_STRING) }; // --- Mixin --- // @vue/component export var tfootMixin = extend({ props: props, methods: { renderTFootCustom: function renderTFootCustom() { var h = this.$createElement; if (this.hasNormalizedSlot(SLOT_NAME_CUSTOM_FOOT)) { return h(BTfoot, { class: this.tfootClass || null, props: { footVariant: this.footVariant || this.headVariant || null }, key: 'bv-tfoot-custom' }, this.normalizeSlot(SLOT_NAME_CUSTOM_FOOT, { items: this.computedItems.slice(), fields: this.computedFields.slice(), columns: this.computedFields.length })); } return h(); }, renderTfoot: function renderTfoot() { // Passing true to renderThead will make it render a tfoot return this.footClone ? this.renderThead(true) : this.renderTFootCustom(); } } });