25 lines
717 B
Vue
25 lines
717 B
Vue
import { inject } from 'vue';
|
|
import { ConfigConsumerProps } from '../config-provider';
|
|
import PropTypes from '../_util/vue-types';
|
|
|
|
export default {
|
|
name: 'ABreadcrumbSeparator',
|
|
__ANT_BREADCRUMB_SEPARATOR: true,
|
|
props: {
|
|
prefixCls: PropTypes.string,
|
|
},
|
|
setup() {
|
|
return {
|
|
configProvider: inject('configProvider', ConfigConsumerProps),
|
|
};
|
|
},
|
|
render() {
|
|
const { prefixCls: customizePrefixCls, $slots } = this;
|
|
const getPrefixCls = this.configProvider.getPrefixCls;
|
|
const prefixCls = getPrefixCls('breadcrumb', customizePrefixCls);
|
|
|
|
const children = $slots.default && $slots.default();
|
|
return <span class={`${prefixCls}-separator`}>{children || '/'}</span>;
|
|
},
|
|
};
|