UNPKG

custom-bootstrap-vue

Version:

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

26 lines (23 loc) 455 B
import Vue from '../../utils/vue' import { mergeData } from 'vue-functional-data-merge' export const props = { tag: { type: String, default: 'div' } } // @vue/component export const BMediaBody = /*#__PURE__*/ Vue.extend({ name: 'BMediaBody', functional: true, props, render(h, { props, data, children }) { return h( props.tag, mergeData(data, { staticClass: 'media-body' }), children ) } })