![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/bootstrap-vue/esm/components/media/ |
import { Vue, mergeData } from '../../vue'; import { NAME_MEDIA } from '../../constants/components'; import { PROP_TYPE_BOOLEAN, PROP_TYPE_STRING } from '../../constants/props'; import { SLOT_NAME_ASIDE, SLOT_NAME_DEFAULT } from '../../constants/slots'; import { normalizeSlot } from '../../utils/normalize-slot'; import { makeProp, makePropsConfigurable } from '../../utils/props'; import { BMediaAside } from './media-aside'; import { BMediaBody } from './media-body'; // --- Props --- export var props = makePropsConfigurable({ noBody: makeProp(PROP_TYPE_BOOLEAN, false), rightAlign: makeProp(PROP_TYPE_BOOLEAN, false), tag: makeProp(PROP_TYPE_STRING, 'div'), verticalAlign: makeProp(PROP_TYPE_STRING, 'top') }, NAME_MEDIA); // --- Main component --- // @vue/component export var BMedia = /*#__PURE__*/Vue.extend({ name: NAME_MEDIA, functional: true, props: props, render: function render(h, _ref) { var props = _ref.props, data = _ref.data, slots = _ref.slots, scopedSlots = _ref.scopedSlots, children = _ref.children; var noBody = props.noBody, rightAlign = props.rightAlign, verticalAlign = props.verticalAlign; var $children = noBody ? children : []; if (!noBody) { var slotScope = {}; var $slots = slots(); var $scopedSlots = scopedSlots || {}; $children.push(h(BMediaBody, normalizeSlot(SLOT_NAME_DEFAULT, slotScope, $scopedSlots, $slots))); var $aside = normalizeSlot(SLOT_NAME_ASIDE, slotScope, $scopedSlots, $slots); if ($aside) { $children[rightAlign ? 'push' : 'unshift'](h(BMediaAside, { props: { right: rightAlign, verticalAlign: verticalAlign } }, $aside)); } } return h(props.tag, mergeData(data, { staticClass: 'media' }), $children); } });