watch.html 628 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>watch</title>
  5. <meta charset="utf-8">
  6. </head>
  7. <body>
  8. <div id="output"></div>
  9. <input sd-value="input">
  10. <script src="../dist/seed.js"></script>
  11. <script>
  12. new seed.ViewModel({
  13. el: document.body,
  14. init: function () {
  15. var output = document.getElementById('output')
  16. this.$watch('input', function (val) {
  17. output.textContent = val
  18. })
  19. }
  20. })
  21. </script>
  22. </body>
  23. </html>