element3
Version:
A Component Library for Vue3
13 lines (9 loc) • 355 B
TypeScript
import { ElementUIComponent } from './component'
interface IBreadcrumbItem 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
}
/** Breadcrumb Item Component */
export const ElBreadcrumbItem: IBreadcrumbItem