breadcrumb-item.d.ts 353 B

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