index.html 387 B

12345678910111213141516
  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. </div>
  9. <script src="/dist/spruce.umd.js"></script>
  10. <script>
  11. Spruce.store('foo', { bar: 'car' })
  12. </script>
  13. </body>
  14. </html>