2019-01-29 04:20:14 +00:00
|
|
|
// Project: https://github.com/vueComponent/ant-design-vue
|
|
|
|
// Definitions by: akki-jat <https://github.com/akki-jat>
|
|
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
2020-09-07 04:45:01 +00:00
|
|
|
import { AntdComponent, AntdProps } from '../component';
|
|
|
|
export declare class BreadcrumbItem extends AntdComponent {
|
2020-08-31 06:59:56 +00:00
|
|
|
$props: AntdProps & {
|
2020-08-16 12:00:45 +00:00
|
|
|
/**
|
|
|
|
* add navigation
|
|
|
|
* @default ''
|
|
|
|
* @type string
|
|
|
|
*/
|
|
|
|
href?: String;
|
|
|
|
overlay?: any;
|
|
|
|
};
|
2019-01-29 04:20:14 +00:00
|
|
|
}
|