I have a jquery lightslider with a class: doorpageslider. After clicking on the image to send the id the page becomes refresh and no more slider and images show without sliding ! by removing the wire:click no problem on click.
<div class="doorpageslider">
@foreach($doors as $d)
<div>
<a href="#colors"
wire:click="door({{ $d->id }})">
<img
class="cursor-pointer"
src="{{ asset('images/doors/' . $d->image) }}"
>
</a>
</div>
@endforeach
</div>