You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
import PropTypes from '../_util/vue-types'
|
|
|
|
import { hasProp, getComponentFromProp } from '../_util/props-util'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ABreadcrumbItem',
|
|
|
|
__ANT_BREADCRUMB_ITEM: true,
|
|
|
|
props: {
|
|
|
|
prefixCls: PropTypes.string.def('ant-breadcrumb'),
|
|
|
|
href: PropTypes.string,
|
|
|
|
separator: PropTypes.any,
|
|
|
|
},
|
|
|
|
render () {
|
|
|
|
const { prefixCls, $slots } = this
|
|
|
|
const children = $slots.default
|
|
|
|
let link
|
|
|
|
if (hasProp(this, 'href')) {
|
|
|
|
link = <a class={`${prefixCls}-link`}>{children}</a>
|
|
|
|
} else {
|
|
|
|
link = <span class={`${prefixCls}-link`}>{children}</span>
|
|
|
|
}
|
|
|
|
if (children) {
|
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
{link}
|
|
|
|
<span class={`${prefixCls}-separator`}>{getComponentFromProp(this, 'separator') || '/'}</span>
|
|
|
|
</span>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
return null
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|