UNPKG

custom-bootstrap-vue

Version:

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

22 lines (21 loc) 519 B
import Vue from '../../utils/vue'; import { mergeData } from 'vue-functional-data-merge'; export var props = { textTag: { type: String, default: 'p' } }; // @vue/component export var BCardText = /*#__PURE__*/Vue.extend({ name: 'BCardText', functional: true, props: props, render: function render(h, _ref) { var props = _ref.props, data = _ref.data, children = _ref.children; return h(props.textTag, mergeData(data, { staticClass: 'card-text' }), children); } });