wire:cloak
Basic Usage
<div wire:cloak>
This content will be hidden until Livewire is fully loaded
</div>Dynamic Content
<!-- wires/togglePanel.bxm -->
<bx:output>
<div>
<div wire:show="expanded" wire:cloak>
<!-- Chevron down icon... -->
</div>
<div wire:show="!expanded" wire:cloak>
<!-- Chevron right icon... -->
</div>
</div>
</bx:output><!-- wires/togglePanel.cfm -->
<cfoutput>
<div>
<div wire:show="expanded" wire:cloak>
<!-- Chevron down icon... -->
</div>
<div wire:show="!expanded" wire:cloak>
<!-- Chevron right icon... -->
</div>
</div>
</cfoutput>Last updated
Was this helpful?