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
46 lines (38 loc) • 1.11 kB
JavaScript
import { extend, mergeData } from '../../vue'
import { NAME_NAVBAR_NAV } from '../../constants/components'
import { pick } from '../../utils/object'
import { makePropsConfigurable } from '../../utils/props'
import { props as BNavProps } from '../nav/nav'
// --- Helper methods ---
const computeJustifyContent = value => {
value = value === 'left' ? 'start' : value === 'right' ? 'end' : value
return `justify-content-${value}`
}
// --- Props ---
export const props = makePropsConfigurable(
pick(BNavProps, ['tag', 'fill', 'justified', 'align', 'small']),
NAME_NAVBAR_NAV
)
// --- Main component ---
// @vue/component
export const BNavbarNav = /*#__PURE__*/ extend({
name: NAME_NAVBAR_NAV,
functional: true,
props,
render(h, { props, data, children }) {
const { align } = props
return h(
props.tag,
mergeData(data, {
staticClass: 'navbar-nav',
class: {
'nav-fill': props.fill,
'nav-justified': props.justified,
[computeJustifyContent(align)]: align,
small: props.small
}
}),
children
)
}
})