Skip to content

Instantly share code, notes, and snippets.

@rodolfojnn
Last active January 3, 2022 13:29
Show Gist options
  • Save rodolfojnn/ea1c2fba2d669f1677f4916e232922c4 to your computer and use it in GitHub Desktop.
Save rodolfojnn/ea1c2fba2d669f1677f4916e232922c4 to your computer and use it in GitHub Desktop.
<script src="//unpkg.com/alpinejs" defer></script>
<div x-data="{ open: false, message: '🔥🔥🔥' }">
<button @click="open = !open">Toggle</button>
<span x-show="open">Visible <strong x-text="message"></strong></span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment