element-plus/types/breadcrumb-item.d.ts

11 lines
336 B
TypeScript
Raw Normal View History

2020-09-15 19:12:27 +08:00
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
}