12345678910111213141516171819202122232425262728293031323334353637 |
- <!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">
- <h1 v-if="num>=10">已经最大数字</h1>
- <h1 v-else>当前数字:{{num}}</h1>
- <button @click="addFun">累加</button>
- </div>
- <script>
- new Vue({
- el:"#app",
- data:{
- num:0
- },
- methods:{
- addFun(){
- // 方法一
- // if(this.num<10){
- // this.num++;
- // }else{
- // this.num = "已到最大值";
- // }
- // 方法二
- this.num++;
-
- }
- }
- })
- </script>
- </body>
- </html>
|