element-ui/types/breadcrumb-item.d.ts
2021-06-07 11:56:04 +08:00

11 lines
319 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 | object
/** If true, the navigation will not leave a history record */
replace: boolean
}