UNPKG

bootstrap-vue

Version:

With more than 85 components, over 45 available plugins, several directives, and 1000+ icons, BootstrapVue provides one of the most comprehensive implementations of the Bootstrap v4 component and grid system available for Vue.js v2.6, complete with extens

47 lines (45 loc) 1.68 kB
import Vue from '../../../vue'; import { NAME_POPOVER_TEMPLATE } from '../../../constants/components'; import { isFunction, isUndefinedOrNull } from '../../../utils/inspect'; import { BVTooltipTemplate } from '../../tooltip/helpers/bv-tooltip-template'; // @vue/component export var BVPopoverTemplate = /*#__PURE__*/Vue.extend({ name: NAME_POPOVER_TEMPLATE, extends: BVTooltipTemplate, computed: { templateType: function templateType() { return 'popover'; } }, methods: { renderTemplate: function renderTemplate(h) { // Title and content could be a scoped slot function var $title = isFunction(this.title) ? this.title({}) : this.title; var $content = isFunction(this.content) ? this.content({}) : this.content; // Directive usage only var titleDomProps = this.html && !isFunction(this.title) ? { innerHTML: this.title } : {}; var contentDomProps = this.html && !isFunction(this.content) ? { innerHTML: this.content } : {}; return h('div', { staticClass: 'popover b-popover', class: this.templateClasses, attrs: this.templateAttributes, on: this.templateListeners }, [h('div', { ref: 'arrow', staticClass: 'arrow' }), isUndefinedOrNull($title) || $title === '' ? /* istanbul ignore next */ h() : h('h3', { staticClass: 'popover-header', domProps: titleDomProps }, [$title]), isUndefinedOrNull($content) || $content === '' ? /* istanbul ignore next */ h() : h('div', { staticClass: 'popover-body', domProps: contentDomProps }, [$content])]); } } });