Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 215 Bytes

loading-states.md

File metadata and controls

12 lines (10 loc) · 215 Bytes

💱 Always use loading states for better UX

Example:

<div>
    <button wire:click="update">Update</button>

    <span wire:loading.delay wire:target="update">
        Loading...
    </span>
</div>