
Basic usage
未设置
Demo
.
.
.
0.0.0.0
@page "/ips"
@inject IStringLocalizer<Ips> Localizer
<DemoBlock Title="Basic usage" Name="Normal">
<IpAddress @bind-Value="@Value" />
<div class="mt-3">@Value</div>
</DemoBlock>
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone or https://argozhang.github.io/
namespace BootstrapBlazor.Shared.Samples;
/// <summary>
///
/// </summary>
public partial class Ips
{
private string? Value { get; set; }
}