File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import { Alert } from './alert';
1111import { Avatar } from './avatar' ;
1212import { BackTop } from './back-top' ;
1313import { Badge } from './badge' ;
14- import { Breadcrumb } from './breadcrumb' ;
14+ import { Breadcrumb } from './breadcrumb/breadcrumb ' ;
1515import { Button } from './button/button' ;
1616import { Calendar } from './calendar' ;
1717import { Card } from './card' ;
Original file line number Diff line number Diff line change 1+ // Project: https://github.com/vueComponent/ant-design-vue
2+ // Definitions by: akki-jat <https://github.com/akki-jat>
3+ // Definitions: https://github.com/vueComponent/ant-design-vue/types
4+
5+ import { AntdComponent } from '../component' ;
6+
7+ export declare class BreadcrumbItem extends AntdComponent {
8+ /**
9+ * add navigation
10+ * @default ''
11+ * @type string
12+ */
13+ href ?: String ;
14+ }
Original file line number Diff line number Diff line change 22// Definitions by: akki-jat <https://github.com/akki-jat>
33// Definitions: https://github.com/vueComponent/ant-design-vue/types
44
5- import { AntdComponent } from './component' ;
5+ import { AntdComponent } from '.. /component' ;
66import { VNode } from 'vue' ;
7+ import { BreadcrumbItem } from './breadcrumb-item' ;
78
89export interface Route {
910 path ?: String ;
1011 breadcrumbName ?: String ;
1112}
1213
1314export declare class Breadcrumb extends AntdComponent {
15+ static BreadcrumbItem : typeof BreadcrumbItem ;
1416 /**
1517 * The routing stack information of router
1618 * @type Route[]
You can’t perform that action at this time.
0 commit comments