![]() 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/src/components/dropdown/ |
import { Vue, mergeData } from '../../vue' import { NAME_DROPDOWN_HEADER } from '../../constants/components' import { PROP_TYPE_STRING } from '../../constants/props' import { isTag } from '../../utils/dom' import { omit } from '../../utils/object' import { makeProp, makePropsConfigurable } from '../../utils/props' // --- Props --- export const props = makePropsConfigurable( { id: makeProp(PROP_TYPE_STRING), tag: makeProp(PROP_TYPE_STRING, 'header'), variant: makeProp(PROP_TYPE_STRING) }, NAME_DROPDOWN_HEADER ) // --- Main component --- // @vue/component export const BDropdownHeader = /*#__PURE__*/ Vue.extend({ name: NAME_DROPDOWN_HEADER, functional: true, props, render(h, { props, data, children }) { const { tag, variant } = props return h('li', mergeData(omit(data, ['attrs']), { attrs: { role: 'presentation' } }), [ h( tag, { staticClass: 'dropdown-header', class: { [`text-${variant}`]: variant }, attrs: { ...(data.attrs || {}), id: props.id || null, role: isTag(tag, 'header') ? null : 'heading' }, ref: 'header' }, children ) ]) } })