| 1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>iview example</title>
- <link rel="stylesheet" type="text/css" href="http://unpkg.com/iview/dist/styles/iview.css">
- <script type="text/javascript" src="http://vuejs.org/js/vue.min.js"></script>
- <script type="text/javascript" src="http://unpkg.com/iview/dist/iview.min.js"></script>
- </head>
- <body>
- <div id="app">
- <i-button @click="show">Click me!</i-button>
- <Modal v-model="visible" title="Welcome">Welcome to iView</Modal>
- </div>
- <script>
- new Vue({
- el: '#app',
- data: {
- visible: false
- },
- methods: {
- show: function () {
- this.visible = true;
- }
- }
- })
- </script>
- </body>
- </html>
|