Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 347 Bytes

wire-model-modifiers.md

File metadata and controls

21 lines (17 loc) · 347 Bytes

💡 Avoid using live wire:model modifier where possible

❌ Bad:

<input wire:model.live="email">

✔️ Better:

<input wire:model.live.debounce.500ms="email">

✔️ Even better:

<input wire:model.blur="email">

✔️ Ideal:

<input wire:model="email">