simple.html 482 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Simple Example</title>
  5. <meta charset="utf-8">
  6. <script src="../dist/seed.js"></script>
  7. </head>
  8. <body sd-controller="hello">
  9. <span sd-text="hello"></span>
  10. <script>
  11. var Seed = require('seed')
  12. Seed.controller('hello', function (scope) {
  13. scope.hello = 'Hello World!'
  14. })
  15. Seed.bootstrap()
  16. </script>
  17. </body>
  18. </html>