Jan 15, 2021
0
Level 2
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 :)
Please or to participate in this conversation.