Home Uncategorized Add Two Numbers in Vue Js

Add Two Numbers in Vue Js

1 min read
0
0
353

in this tutorials will teach how to add two numbers in vue js.

Html

   <template>
    <div class="container">
      
      <h2>Add Two Numbers</h2>
    
        <div class="form-group">
          <label>Number 1</label>
          <input v-model="adddata.number1"  type="text" class="form-control">
         
        </div>
        <div class="form-group">
          <label>Number 2</label>
          <input  v-model="adddata.number2" type="text" class="form-control" >
        </div>
        <div class="form-group">
          <label>Total</label>
          <input  v-model="adddata.number2" type="text" class="form-control" >
         
          <h3>{{ total }}</h3>
    
        </div>
    </div>
    </template>

JS

<script>
    export default {
    name: 'AddNumber',
    data () {
      return {
         result: {},
          adddata:{
            number1: '',
            number2: ''
          }
      }
      
    },
    computed: {
           total:function()
         {
              return parseInt(this.task.num1) + parseInt(this.task.num2);
    
         }
    
      }
    
    }
    </script>

i have attached the video link below. which will do this tutorials step by step

 

    Load More Related Articles
    Load More By admin
    Load More In Uncategorized

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    Check Also

    Laravel 11 CRUD Application

    In this tutorial will teach Laravel 11 CRUD Application step by step. Laravel  11 CRUD App…