Vue实现简单计算器功能

版权声明:请尊重每个人的努力! https://blog.csdn.net/IndexMan/article/details/88915593

知识点:

v-model双向绑定

v-on事件绑定

实现效果

源码

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <script src="./lib/vue-2.4.0.js"></script>
  </head>

  <body>
    <div id="app">
      <input type="text" v-model="n1" />
      <select v-model="opt">
        <option value="+">+</option>
        <option value="-">-</option>
        <option value="*">*</option>
        <option value="/">/</option>
      </select>
      <input type="text" v-model="n2" />
      <input type="button" value="=" @click="calc" />
      <input type="text" v-model="result" />
    </div>
    <script>
      var vm = new Vue({
        el: '#app',
        data: {
          n1: 0,
          n2: 0,
          opt: '+',
          result: 0
        },
        methods: {
          calc() {
            switch (this.opt) {
              case '+':
                this.result = parseInt(this.n1) + parseInt(this.n2)
                break
              case '-':
                this.result = parseInt(this.n1) - parseInt(this.n2)
                break
              case '*':
                this.result = parseInt(this.n1) * parseInt(this.n2)
                break
              case '/':
                this.result = parseInt(this.n1) / parseInt(this.n2)
                break
              default:
                this.result = 0
            }
          }
        }
      })
    </script>
  </body>
</html>

猜你喜欢

转载自blog.csdn.net/IndexMan/article/details/88915593