I have a wizard form that is a livewire component and it always rerender when i am typing. I want to stop de rerendering until i submit the form.
Who can help me please ? Sorry for the bad english i’m french.
I have a wizard form that is a livewire component and it always rerender when i am typing. I want to stop de rerendering until i submit the form.
Who can help me please ? Sorry for the bad english i’m french.
Did you try wire:model.lazy
?
<input wire:model.lazy="first_name" id="first_name" type="text"/>
</div>
@if($first_name)
<p>{{ $first_name }}Test to see that it is not rendering on every key press</p>
@endif