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.
ant-design-vue/types/page-header.d.ts

76 lines
1.6 KiB

// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: drafish <https://github.com/drafish>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent } from './component';
import { VNodeChild } from 'vue';
export declare class PageHeader extends AntdComponent {
$props: {
/**
* Custom backIcon
* @default <ArrowLeftOutlined />
* @type any (string | slot)
*/
backIcon?: VNodeChild | JSX.Element;
/**
* Custom prefixCls
* @type string
*/
prefixCls?: string;
/**
* Custom title
* @type any (string | slot)
*/
title?: VNodeChild | JSX.Element;
/**
* Custom subTitle
* @type any (string | slot)
*/
subTitle?: VNodeChild | JSX.Element;
/**
* Breadcrumb configuration
* @type breadcrumb
*/
breadcrumb?: object;
/**
* Tag list next to title
* @type any (string | slot)
*/
tags?: VNodeChild | JSX.Element;
/**
* PageHeader's footer, generally used to render TabBar
* @type any (string | slot)
*/
footer?: VNodeChild | JSX.Element;
/**
* Operating area, at the end of the line of the title line
* @type any (string | slot)
*/
extra?: VNodeChild | JSX.Element;
/**
* Avatar next to the title bar
* @type Avatar
*/
avatar?: object;
/**
* PageHeader type, will change background color
* @default true
* @type boolean
*/
ghost?: boolean;
/**
* Specify a callback that will be called when a user clicks backIcon.
*/
onBack(): () => void;
}
}