import { Component } from './Component'; export interface UniBreadcrumbItemProps { /** * @desc 路由跳转页面路径 */ to: string | Record; /** * @desc 在使用 to 进行路由跳转时,启用 replace 将不会向 history 添加新记录 */ replace: boolean; } export type UniBreadcrumbItem = Component>;