• vue累加计数器


     1 <!DOCTYPE html>
     2 <html lang="en">
     3 <head>
     4     <meta charset="UTF-8">
     5     <title>vue的单击事件</title>
     6     <script type="text/javascript" src="./js/vue.js"></script>
     7     <script type="text/javascript">
     8 
     9     window.onload = function(){
    10 
    11         var app = new Vue({
    12             el:".c",
    13             data:{
    14 
    15                 //定义计数器
    16                 counter:0,
    17                 
    18             }
    19         });
    20     }
    21 
    22     </script>
    23 
    24 </head>
    25 <body>
    26     <div class="c">
    27         <!-- 定义一个按钮,使用counter做累加-->
    28         <button v-on:click="counter += 1"><font size="2" color="blue">+</font></button>
    29         <input type="text" v-model="counter" style=" 40px;background-color: pink;text-align:center" />
    30         <button v-on:click="counter -= 1"><font size="2" color="blue">-</font></button>
    31     </div>
    32 </body>
    33 </html>
  • 相关阅读:
    丑数(摘)
    queue 之团队队列(摘)
    stack 集合栈计算机 (摘)
    反片语(map)
    stl的集合set——安迪的第一个字典(摘)
    stringstream函数(i o)
    T
    S
    R
    java面试题
  • 原文地址:https://www.cnblogs.com/sunzhiqi/p/10101302.html
Copyright © 2020-2023  润新知