13 lines
236 B
Plaintext
13 lines
236 B
Plaintext
|
|
@page "/modalDemo"
|
||
|
|
|
||
|
|
<h3>Blazored Modal Demo</h3>
|
||
|
|
|
||
|
|
@inject IModalService modalService
|
||
|
|
|
||
|
|
<button @onclick="(()=> modalService.Show<Counter>(Titulo))" class="btn btn-primary">Ver</button>
|
||
|
|
|
||
|
|
@code {
|
||
|
|
|
||
|
|
string Titulo = "Modal Example";
|
||
|
|
}
|