UNPKG

319 BTypeScriptView Raw
1import { ElementUIComponent } from './component'
2
3/** Breadcrumb Item Component */
4export declare class ElBreadcrumbItem extends ElementUIComponent {
5 /** Target route of the link, same as to of vue-router */
6 to: string | object
7
8 /** If true, the navigation will not leave a history record */
9 replace: boolean
10}