Skip to content

Instantly share code, notes, and snippets.

@ozcanzaferayan
Created May 23, 2020 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozcanzaferayan/60dfc86a97899087350aa10bfcae91de to your computer and use it in GitHub Desktop.
Save ozcanzaferayan/60dfc86a97899087350aa10bfcae91de to your computer and use it in GitHub Desktop.
Reactive input element in AlpineJS
<script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.3.5/dist/alpine.min.js"></script>
<div x-data="{msg:''}">
<input x-model="msg" />
<span x-text="msg"></span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment