template.html 795 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title></title>
  5. <meta charset="utf-8">
  6. </head>
  7. <body>
  8. <script type="text/sd-template" id="test">
  9. <p>{{hi}}!</p>
  10. </script>
  11. <script src="../dist/seed.js"></script>
  12. <script>
  13. var template = document.getElementById('test').innerHTML.trim()
  14. var china = new seed.ViewModel({
  15. template: template
  16. })
  17. document.body.appendChild(china.$el)
  18. china.hi = '你好'
  19. var Child = seed.ViewModel.extend({
  20. template: template
  21. })
  22. var hawaii = new Child()
  23. document.body.appendChild(hawaii.$el)
  24. hawaii.hi = 'Aloha!'
  25. </script>
  26. </body>
  27. </html>