test.html 784 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>iview example</title>
  6. <link rel="stylesheet" type="text/css" href="http://unpkg.com/iview/dist/styles/iview.css">
  7. <script type="text/javascript" src="http://vuejs.org/js/vue.min.js"></script>
  8. <script type="text/javascript" src="http://unpkg.com/iview/dist/iview.min.js"></script>
  9. </head>
  10. <body>
  11. <div id="app">
  12. <i-button @click="show">Click me!</i-button>
  13. <Modal v-model="visible" title="Welcome">Welcome to iView</Modal>
  14. </div>
  15. <script>
  16. new Vue({
  17. el: '#app',
  18. data: {
  19. visible: false
  20. },
  21. methods: {
  22. show: function () {
  23. this.visible = true;
  24. }
  25. }
  26. })
  27. </script>
  28. </body>
  29. </html>