Buttons with wire:click randomly dropping JS events

I have created a custom paginator with a hope to replicate datatable paginator and it works (almost all the time). Definition of navigation has nothing special:

        <li class="paginate_button page-item ">
            <button class="page-link" wire:click="gotoPage(2)">2</button>
        </li> 

But randomly paginator buttons stopping responding on clicks (the JS event got dropped). It could happen with any paginator navigation button.

All other component functions seems to work properly. Most wierd thing is that it is not possible to predict when it happens.
Have you experienced anything like this?