ant-design-blazor/components/anchor/AnchorLink.razor
James Yeung 93310a1d14 docs: fix anchor and improvement (#1107)
* docs: fix anchor and improvement

* fix docsearch

* fix docsearch action
2021-02-06 19:27:48 +08:00

9 lines
316 B
C#

@namespace AntDesign
@inherits AntDomComponentBase
<div class="@ClassMapper.Class" style="@Style" @ref="Ref" id="@Id">
<a title="@Title" class="@_titleClass.Class" @onclick="(e)=>OnClick(e)">@Title</a>
<CascadingValue Value="this" Name="Parent" IsFixed>
@ChildContent
</CascadingValue>
</div>