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

49 lines (43 loc) 1.5 kB
import { extend, mergeData } from '../../vue' import { NAME_CARD_FOOTER } from '../../constants/components' import { PROP_TYPE_ARRAY_OBJECT_STRING, PROP_TYPE_STRING } from '../../constants/props' import { htmlOrText } from '../../utils/html' import { sortKeys } from '../../utils/object' import { copyProps, makeProp, makePropsConfigurable, prefixPropName } from '../../utils/props' import { props as BCardProps } from '../../mixins/card' // --- Props --- export const props = makePropsConfigurable( sortKeys({ ...copyProps(BCardProps, prefixPropName.bind(null, 'footer')), footer: makeProp(PROP_TYPE_STRING), footerClass: makeProp(PROP_TYPE_ARRAY_OBJECT_STRING), footerHtml: makeProp(PROP_TYPE_STRING) }), NAME_CARD_FOOTER ) // --- Main component --- // @vue/component export const BCardFooter = /*#__PURE__*/ extend({ name: NAME_CARD_FOOTER, functional: true, props, render(h, { props, data, children }) { const { footerBgVariant, footerBorderVariant, footerTextVariant } = props return h( props.footerTag, mergeData(data, { staticClass: 'card-footer', class: [ props.footerClass, { [`bg-${footerBgVariant}`]: footerBgVariant, [`border-${footerBorderVariant}`]: footerBorderVariant, [`text-${footerTextVariant}`]: footerTextVariant } ], domProps: children ? {} : htmlOrText(props.footerHtml, props.footer) }), children ) } })