2020-05-29 00:33:49 +08:00
|
|
|
@namespace AntDesign
|
2020-04-23 17:13:56 +08:00
|
|
|
@inherits AntDomComponentBase
|
2020-03-08 22:32:30 +08:00
|
|
|
|
2021-01-21 17:20:10 +08:00
|
|
|
<CascadingValue Value="this" IsFixed="@true">
|
2020-05-22 00:05:26 +08:00
|
|
|
<div class="@ClassMapper.Class" style="@Style" id="@Id" @ref="Ref">
|
2020-03-08 22:32:30 +08:00
|
|
|
@ChildContent
|
2020-04-23 17:13:56 +08:00
|
|
|
@if (AutoGenerate)
|
2020-03-08 22:32:30 +08:00
|
|
|
{
|
|
|
|
foreach (var breadcrumb in _breadcrumbs)
|
|
|
|
{
|
2020-05-22 00:05:26 +08:00
|
|
|
<BreadcrumbItem>
|
2020-04-24 18:32:50 +08:00
|
|
|
<a href="@breadcrumb.Url" @onclick="(e)=>Navigate(breadcrumb.Url.ToString())">@breadcrumb.Label</a>
|
2020-05-22 00:05:26 +08:00
|
|
|
</BreadcrumbItem>
|
2020-03-08 22:32:30 +08:00
|
|
|
}
|
|
|
|
}
|
2020-05-22 00:05:26 +08:00
|
|
|
</div>
|
2020-03-08 22:32:30 +08:00
|
|
|
</CascadingValue>
|
|
|
|
|