reactivity.html 449 B

1234567891011121314151617
  1. <html>
  2. <head>
  3. <script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.x.x/dist/alpine.js" defer></script>
  4. </head>
  5. <body>
  6. <div x-data>
  7. <span x-text="$store.foo.bar"></span>
  8. <button @click="$store.foo.bar = 'boo'"></button>
  9. </div>
  10. <script src="/dist/spruce.umd.js"></script>
  11. <script>
  12. Spruce.store('foo', { bar: 'car' })
  13. </script>
  14. </body>
  15. </html>