mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
356 B
16 lines
356 B
@page "/"
|
|
@using Volo.Abp.AspNetCore.Components.Messages
|
|
@inject IUiMessageService UiMessageService
|
|
|
|
<h1>Hello, world!</h1>
|
|
|
|
<Button Color="Color.Primary" Clicked="ShowMessage">Show message</Button>
|
|
|
|
<UiMessageAlert />
|
|
|
|
@code{
|
|
private async Task ShowMessage()
|
|
{
|
|
await UiMessageService.Success("Blazorize is properly working :)");
|
|
}
|
|
} |