simple-dir.html 952 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title></title>
  5. <meta charset="utf-8">
  6. <script src="../../../dist/vue.js"></script>
  7. </head>
  8. <body>
  9. <div id="hi" v-test v-test2>
  10. </div>
  11. <p class="one"></p>
  12. <p class="two"></p>
  13. <script>
  14. var a = new Vue({
  15. el: '#hi',
  16. directives: {
  17. test: {
  18. bind: function () {
  19. document.querySelector('.one').textContent = 'bind'
  20. },
  21. unbind: function () {
  22. document.querySelector('.one').textContent = 'unbind'
  23. }
  24. },
  25. test2: function () {
  26. document.querySelector('.two').textContent = 'bind'
  27. }
  28. }
  29. })
  30. </script>
  31. </body>
  32. </html>