custom-bootstrap-vue
Version:
Custom version of bootstrap-vue created for providing specific theme to a particular project
22 lines (21 loc) • 532 B
JavaScript
import Vue from '../../utils/vue';
import { mergeData } from 'vue-functional-data-merge';
export var props = {
tag: {
type: String,
default: 'div'
}
}; // @vue/component
export var BInputGroupText = /*#__PURE__*/Vue.extend({
name: 'BInputGroupText',
functional: true,
props: props,
render: function render(h, _ref) {
var props = _ref.props,
data = _ref.data,
children = _ref.children;
return h(props.tag, mergeData(data, {
staticClass: 'input-group-text'
}), children);
}
});