mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-13 16:35:55 +08:00
783fddf4ef
* feat(module: tabs): add context menu * fix missing body * remove icon * add context menu de
12 lines
254 B
C#
12 lines
254 B
C#
@page "/authentication/{action}"
|
|
|
|
@attribute [ReuseTabsPage(Ignore = true)]
|
|
@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
|
|
|
|
<RemoteAuthenticatorView Action="@Action" />
|
|
|
|
@code{
|
|
|
|
[Parameter] public string Action { get; set; }
|
|
}
|