MeiRiYiCheng_1_old/YBDevice.Web/Pages/Old/Example.razor

8 lines
161 B
Plaintext
Raw Normal View History

2025-07-16 17:14:38 +08:00
@page "/example/{param?}"
<h3>URL参数:@Param</h3>
@*<HelloWorld Text="123"></HelloWorld>*@
@code {
[Parameter]
public string? Param { get; set; }
}