跳到主要内容
Swizzle Ready

Breadcrumb

A breadcrumb displays the current location within a hierarchy. It allows going back to states higher up in the hierarchy. <Breadcrumb> component built with Ant Design's Breadcrumb components using the useBreadcrumb hook.

Swizzle

You can swizzle this component to customize it with the refine CLI

Properties

<Breadcrumb> component uses the Ant Design Breadcrumb component so it can be configured with the breadcrumbProps property.

import { List, Breadcrumb } from "@pankod/refine-antd";

export const PostList: React.FC = () => {
return (
<List
pageHeaderProps={{
breadcrumb: <Breadcrumb breadcrumbProps={{ separator: "-" }} />,
}}
>
...
</List>
);
};

showHome

If your application has a DashboardPage, the home button is shown to the top of the hierarchy by default. If you don't want to show the home button, you can set showHome to false.

import { List, Breadcrumb } from "@pankod/refine-antd";

export const PostList: React.FC = () => {
return (
<List
pageHeaderProps={{
breadcrumb: <Breadcrumb showHome={false} />,
}}
>
...
</List>
);
};

hideIcons

If you don't want to show the resource icons on the breadcrumb, you can set hideIcons to true.

import { List, Breadcrumb } from "@pankod/refine-antd";

export const PostList: React.FC = () => {
return (
<List
pageHeaderProps={{
breadcrumb: <Breadcrumb hideIcons />,
}}
>
...
</List>
);
};

API Reference

Properties