UNPKG

bootstrap-vue

Version:

Quickly integrate Bootstrap 4 components with Vue.js

49 lines (43 loc) 1.4 kB
import { mergeData, pluckProps } from "../../utils"; import { assign } from "../../utils/object"; import { arrayIncludes } from "../../utils/array"; import Link, { propsFactory as linkPropsFactory } from "../link/link"; const actionTags = ["a", "router-link", "button", "b-link"]; let linkProps = linkPropsFactory(); delete linkProps.href.default; delete linkProps.to.default; export const props = assign(linkProps, { tag: { type: String, default: "div" }, action: { type: Boolean, default: null }, variant: { type: String, default: null } }); export default { functional: true, props, render(h, { props, data, children }) { const tag = !props.href && !props.to ? props.tag : Link; const componentData = { staticClass: "list-group-item", class: { "list-group-flush": props.flush, [`list-group-item-${props.variant}`]: Boolean(props.variant), active: props.active, disabled: props.disabled, "list-group-item-action": Boolean( props.href || props.to || props.action || arrayIncludes(actionTags, props.tag) ) }, props: pluckProps(linkProps, props) }; return h(tag, mergeData(data, componentData), children); } };