12 lines
145 B
Plaintext
Raw Normal View History

2021-08-04 09:30:34 +09:00
@page "/"
2021-09-02 16:37:20 +09:00
<button @onclick=OnClick>button</button>
2021-08-04 09:30:34 +09:00
2021-09-02 16:37:20 +09:00
<table>
@foreach (var item in ItemsView)
{
<tr>
<td>@item</td>
</tr>
}
</table>