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';
11
11
import { Avatar } from './avatar' ;
12
12
import { BackTop } from './back-top' ;
13
13
import { Badge } from './badge' ;
14
- import { Breadcrumb } from './breadcrumb' ;
14
+ import { Breadcrumb } from './breadcrumb/breadcrumb ' ;
15
15
import { Button } from './button/button' ;
16
16
import { Calendar } from './calendar' ;
17
17
import { 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 2
2
// Definitions by: akki-jat <https://github.com/akki-jat>
3
3
// Definitions: https://github.com/vueComponent/ant-design-vue/types
4
4
5
- import { AntdComponent } from './component' ;
5
+ import { AntdComponent } from '.. /component' ;
6
6
import { VNode } from 'vue' ;
7
+ import { BreadcrumbItem } from './breadcrumb-item' ;
7
8
8
9
export interface Route {
9
10
path ?: String ;
10
11
breadcrumbName ?: String ;
11
12
}
12
13
13
14
export declare class Breadcrumb extends AntdComponent {
15
+ static BreadcrumbItem : typeof BreadcrumbItem ;
14
16
/**
15
17
* The routing stack information of router
16
18
* @type Route[]
You can’t perform that action at this time.
0 commit comments