mirror of https://github.com/ElemeFE/element
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
|
import { Route } from 'vue-router'
|
||
|
import { ElementUIComponent } from './component'
|
||
|
|
||
|
/** Breadcrumb Item Component */
|
||
|
export declare class ElBreadcrumbItem extends ElementUIComponent {
|
||
|
/** Target route of the link, same as to of vue-router */
|
||
|
to: string | Route
|
||
|
|
||
|
/** If true, the navigation will not leave a history record */
|
||
|
replace: boolean
|
||
|
}
|