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

11 lines
315 B
TypeScript

import { ElementUIComponent } from './component'
/** Displays the location of the current page, making it easier to browser back */
export declare class ElBreadcrumb extends ElementUIComponent {
/** Separator character */
separator: string
/** Class name of the icon separator */
separatorClass: string
}