breadcrumb-item.d.ts 319 B

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