UNPKG

custom-bootstrap-vue

Version:

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

26 lines (23 loc) 449 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 BFormRow = /*#__PURE__*/ Vue.extend({ name: 'BFormRow', functional: true, props, render(h, { props, data, children }) { return h( props.tag, mergeData(data, { staticClass: 'form-row' }), children ) } })