new-api-test.html 727 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title></title>
  5. <meta charset="utf-8">
  6. <script src="dist/seed.js"></script>
  7. </head>
  8. <body>
  9. <div sd-template="todo" sd-text="hi" sd-on="click:hello"></div>
  10. <script>
  11. var Test = Seed.ViewModel.extend({
  12. template: 'todo',
  13. initialize: function (msg) {
  14. this.hi = 'Aloha'
  15. },
  16. properties: {
  17. hello: function () {
  18. console.log('Aloha')
  19. }
  20. }
  21. })
  22. var app = new Test()
  23. document.body.appendChild(app.$el)
  24. </script>
  25. </body>
  26. </html>