Blazor绑定日期

<PageTitle>Date Binding</PageTitle>

<h1>Date Binding Example</h1>

<p>
<label>
<code>yyyy-MM-dd</code> format:
<input @bind="startDate" @bind:format="yyyy-MM-dd" />
</label>
</p>

<p>
<code>startDate</code>: @startDate
</p>

@code {
private DateTime startDate = new(2020, 1, 1);
}

posted @ 2024-03-03 10:21  Biyuanguang  阅读(8)  评论(0编辑  收藏  举报