simple-dir.html 826 B

123456789101112131415161718192021222324252627282930
  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 id="hi" sd-test sd-test2></div>
  10. <script>
  11. var a = new Seed({
  12. el: '#hi',
  13. directives: {
  14. test: {
  15. bind: function () {
  16. console.log('bind')
  17. },
  18. unbind: function () {
  19. console.log('unbind')
  20. }
  21. },
  22. test2: function () {
  23. console.log('test2 bind')
  24. }
  25. }
  26. })
  27. a.$destroy()
  28. </script>
  29. </body>
  30. </html>