@gitlab/ui
Version:
GitLab UI Components
32 lines (26 loc) • 700 B
JavaScript
import { extend, mergeData } from '../../vue';
import { NAME_FORM_ROW } from '../../constants/components';
import { PROP_TYPE_STRING } from '../../constants/props';
import { makePropsConfigurable, makeProp } from '../../utils/props';
// --- Props ---
const props = makePropsConfigurable({
tag: makeProp(PROP_TYPE_STRING, 'div')
}, NAME_FORM_ROW);
// --- Main component ---
// @vue/component
const BFormRow = /*#__PURE__*/extend({
name: NAME_FORM_ROW,
functional: true,
props,
render(h, _ref) {
let {
props,
data,
children
} = _ref;
return h(props.tag, mergeData(data, {
staticClass: 'form-row'
}), children);
}
});
export { BFormRow, props };