counter-card.html 393 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <pstm-name>counter-card</pstm-name>
  5. <style>
  6. .counter-card { border: 1px solid #ddd; padding: 1rem; border-radius: 6px; margin: 1rem 0; }
  7. </style>
  8. </head>
  9. <body pstm-materialise-as="section" class="counter-card">
  10. <p>Counter: <span stm-text="counter.value">0</span></p>
  11. <button stm-action="counter.bump">Bump +1</button>
  12. </body>
  13. </html>