How To Handle Events in Vue.js?

How To Handle Events in Vue.js 2?

What Is Vue.js?

The Vue.js is a progressive JavaScript framework and used to building the interactive user interfaces and also it’s focused on the view layer only (front end).

The Vue.js is easy to integrate with other libraries and others existing projects. Vue.js is very popular for Single Page Applications developments.

The Vue.js is lighter, smaller in size and so faster. It also supports the MVVM (Model-View-ViewModel) pattern.

How To Handle Events in Vue.js?

HTML Code –
<script src="https://unpkg.com/vue"></script>
<div id="demo-app">
  <input type="text" v-model="name">
  <button v-on:click="myClickMethod">Click Me? </button>
<div>

VueJs Code –
//Model class
var customerModel = {
  name: "Anil Singh",
  age: 32
};

//Customer View Model.
var customerViewModel = new Vue({
  el: '#demo-app',
  data: customerModel,

  // A click handler inside methods
  methods: {
    myClickMethod: function() {
      alert("Hello " + this.name);
    }
  }
});

The Result looks here -  https://jsfiddle.net/erttwer6/

I hope you are enjoying with this post! Please share with you friends. Thank you!!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

How To Handle Events in Vue.js 2? How To Handle Events in Vue.js 2? Reviewed by Anil Singh on 8:38 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^