12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="./js/vue.js"></script>
- </head>
- <body>
- <div id="app">
- <input type="checkbox" v-bind:checked="isCheck">
- <button @click="checkFun" >check</button>
- </div>
- <script>
- var app = new Vue({
- el: '#app',
- data: {
- isCheck: false
- },
- methods: {
- checkFun: function(){
- this.isCheck = !this.isCheck;
- }
- },
- })
- </script>
- </body>
- </html>
|