mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
11 lines
336 B
TypeScript
11 lines
336 B
TypeScript
|
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 | Record<string, unknown>
|
||
|
|
||
|
/** If true, the navigation will not leave a history record */
|
||
|
replace: boolean
|
||
|
}
|