@page "/"
<div class="d-flex flex-wrap mt-3">
<div class="card mr-3" style="width: 200px; height: 50px" @ontouchstart="@(() => _event = "ontouchstart")">
ontouchstart event
</div>
<div class="card mr-3" style="width: 200px; height: 50px" @ontouchenter="@(() => _event = "ontouchenter")">
ontouchenter event
</div>
<div class="card mr-3" style="width: 200px; height: 50px" @ontouchend="@(() => _event = "ontouchend")">
ontouchend event
</div>
<div class="card" style="width: 200px; height: 50px" @ontouchleave="@(() => _event = "ontouchleave")">
ontouchleave event
</div>
</div>
<div class="card mt-3">
Event: @_event
</div>
@code {
string _event = "none";
}