mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-12 11:55:24 +08:00
9 lines
337 B
C#
9 lines
337 B
C#
|
@namespace AntDesign
|
|||
|
@inherits AntDomComponentBase
|
|||
|
|
|||
|
<div class="@ClassMapper.Class" style="@Style" @ref="@_self" id="@Id">
|
|||
|
<a title="@Title" class="@_titleClass.Class" href="javascript:void(0)" @onclick="(e)=>OnClick(e)">@Title</a>
|
|||
|
<CascadingValue Value="this" Name="Parent">
|
|||
|
@ChildContent
|
|||
|
</CascadingValue>
|
|||
|
</div>
|