index2.html 374 B

12345678910111213141516
  1. <html>
  2. <script src="./packages/navigate/dist/cdn.js" defer></script>
  3. <script src="./packages/alpinejs/dist/cdn.js" defer></script>
  4. <hr>
  5. <a href="/index.html">Previous</a>
  6. <hr>
  7. Second page:
  8. <div x-data="{ count: 1 }" x-navigate:persist="foo">
  9. <span x-text="count"></span>
  10. <button @click="count++">+</button>
  11. </div>
  12. </html>