## API | Property | Description | Type | Optional | Default | Version | | --- | --- | --- | --- | --- | --- | | itemRender | Custom item renderer, slot="itemRender" and slot-scope="{route, params, routes, paths}" | ({route, params, routes, paths, h}) => vNode | | - | | | params | Routing parameters | object | | - | | | routes | The routing stack information of router | [routes\[\]](#routes) | | - | | | separator | Custom separator | string\|slot | | `/` | | ### routes ```ts interface Route { path: string; breadcrumbName: string; children: Array<{ path: string; breadcrumbName: string; }>; } ``` ### Use with browserHistory The link of Breadcrumb item targets `#` by default, you can use `itemRender` to make a `browserHistory` Link. ```html ```