custom-bootstrap-vue
Version:
Custom version of bootstrap-vue created for providing specific theme to a particular project
16 lines (15 loc) • 429 B
JavaScript
import Vue from '../../utils/vue';
import { mergeData } from 'vue-functional-data-merge';
export var props = {}; // @vue/component
export var BNavText = /*#__PURE__*/Vue.extend({
name: 'BNavText',
functional: true,
props: props,
render: function render(h, _ref) {
var data = _ref.data,
children = _ref.children;
return h('li', mergeData(data, {
staticClass: 'navbar-text'
}), children);
}
});