export interface Path { /** 页面对应的唯一id */ id: string; /** 页面对应的名字 */ title: string; /** 是否可点击 */ clickable?: boolean; } export interface BreadcrumbProp { pathList: Array; /** 点击跳转到对应的页面 */ onLink: (id: string, path?: Path, idx?: number) => void; /** 首页对应的id值 */ home?: string; className?: string; bordered?: boolean; }