adityar15's avatar

wire:loading for scroll.

I am using pagination to show content on scroll. I am using livewire and while fetching the content I want to show loading on the frontend. I tried

<div wire:loading wire:target='fetch'>

'Getting content ...'

</div>

But it does not work. I am calling fetch function with an event.

<script>

window.addEventListener('load', ()=>{
	if(isinscrollview(document.querySelector('footer')){
	Livewire.emit('fetch')
}
});

</script>

Is there any best method to solve this? Thanks in advance :)

0 likes
0 replies

Please or to participate in this conversation.