mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
1.4 KiB
1.4 KiB
category | type | title | cols | subtitle |
---|---|---|---|---|
Components | Navigation | PageHeader | 1 |
The header can be used to declare the page topic, display important information about the page that the user is interested in, and carry the action items related to the current page (including page-level operations, inter-page navigation, etc.)
When To Use
It can also be used as inter-page navigation when it is needed to make the user quickly understand what the current page is and to facilitate the user to use the page function.
API
Param | Description | Type | Default value | Version |
---|---|---|---|---|
title | custom title text | ReactNode | - | 3.14.0 |
subTitle | custom subTitle text | ReactNode | - | 3.14.0 |
avatar | Avatar next to the title bar | avatar props | - | 3.22.0 |
backIcon | custom back icon, if false the back icon will not be displayed | ReactNode | <Icon type="arrow-left" /> |
3.14.0 |
tags | Tag list next to title | Tag[] | Tag | - | 3.14.0 |
extra | Operating area, at the end of the line of the title line | ReactNode | - | 3.14.0 |
breadcrumb | breadcrumb config | breadcrumb | - | 3.14.0 |
footer | PageHeader's footer, generally used to render TabBar | ReactNode | - | 3.14.0 |
onBack | back icon click event | ()=>void |
()=>history.back() |
3.14.0 |