mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
11 lines
291 B
Plaintext
11 lines
291 B
Plaintext
|
@namespace AntBlazor.Internal
|
||
|
|
||
|
<div class="@(DatePicker.PrefixCls)-footer">
|
||
|
<a class="@(DatePicker.PrefixCls)-today-btn" @onclick="e => DatePicker.ChangePickerValue(DateTime.Now)">今天</a>
|
||
|
</div>
|
||
|
|
||
|
@code {
|
||
|
[CascadingParameter]
|
||
|
public AntDatePicker DatePicker { get; set; }
|
||
|
|
||
|
}
|