mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
77b78a9389
* Unify name of ReactNode type in document * Lowser all string type name * Lowercase all number type name * Lowercase all boolean type name * Unify array type * Lowercase all object type name * Unify mutilple types
1.5 KiB
1.5 KiB
category | type | title |
---|---|---|
Components | Navigation | Breadcrumb |
A breadcrumb displays the current location within a hierarchy. It allows going back to states higher up in the hierarchy.
When To Use
- When the system has more than two layers in a hierarchy.
- When you need to inform the user of where they are.
- When the user may need to navigate back to a higher level.
- When the application has multi-layer architecture.
API
Property | Description | Type | Optional | Default |
---|---|---|---|---|
routes | The routing stack information of router | object[] | - | |
params | Routing parameter | object | - | |
separator | Custom separator | string|ReactNode | '/' | |
itemRender | Custom item renderer | (route, params, routes, paths) => ReactNode | - |
linkRender
andnameRender
were removed afterantd@2.0
, please useitemRender
instead.
Use with browserHistory
The link of Breadcrumb item contain #
defaultly, you can use itemRender
to make browserHistory
Link.
import { Link } from 'react-router';
function itemRender(route, params, routes, paths) {
const last = routes.indexOf(route) === routes.length - 1;
return last ? <span>{route.breadcrumbName}</span> : <Link to={paths.join('/')}>{route.breadcrumbName}</Link>;
}
return <Breadcrumb itemRender={itemRender} />;