mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
7d55d47b67
* some style updates * fix a datepicker typo
11 lines
319 B
TypeScript
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
|
|
}
|