Home > Web Front-end > JS Tutorial > body text

Vue.JS event handling tutorial and code examples

藏色散人
Release: 2019-04-01 09:52:17
Original
2369 people have browsed it

In this article we will introduce to you event processing in vuejs.

Vuejs provides us with a directive called v:on, which can help us register and listen for dom events, so that whenever the event is triggered, The method passed to the event will be called.

<strong>v:on</strong> Syntax of the directive

<!-- v:on:eventname="methodname" -->

<button v:on:click="handleClick">Click</button>
Copy after login

In the above code, we listen for ## on the button #click event so that whenever the user clicks on the button, it calls the handleClick method.

<template>
   <div>
      <h1>{{num}}</h1>
      <button  v-on:click="increment">Increment</button>
   </div>
</template>

<script>
   export default{
       data:function(){
           return{
               num:0
           }
       },
       methods:{
           increment:function(){
               this.num=this.num+1
           }
       }
   }
</script>
Copy after login

How to pass parameters to event handlers?

Sometimes event handler methods can also accept parameters.

<template>
   <div>
       <h1>{{num}}</h1>
       <!-- 参数10被传递给increment方法-->
      <button  v-on:click="increment(10)">Increment By 10</button>
   </div>
</template>

<script>
   export default{
       data:function(){
           return{
               num:0
           }
       },
       methods:{
           //参数`value`
           increment:function(value){
               this.num =this.num+value
           }
       }
   }
</script>
Copy after login

Here, we create an

increment method with only one parameter value to pass the parameters to the increment(10) method.

How to access the default event object?

To access the default event object in the method vuejs, you need to provide a variable named $event.

<template>
   <!-- 我们正在传递一个$event变量 -->
  <input placeholder="name" v-on:onchange="handleChange($event)" />
</template>

<script>
 export default{
     methods:{
         handleChange:function($event){
             console.log($event.target.value)
         }
     }
 }
</script>
Copy after login

Here, we access the event object by using the special $event variable provided by Vuejs.

Sometimes we need to access event objects and parameters at the same time.

<template>
   <!-- 我们传递参数加上$event变量  -->
  <button v-on:click="hitMe(&#39;You hitted me&#39;,$event)">
    Hit me Hard
  </button>
</template>

<script>
 export default{
     methods:{
         handleChange:function(message,$event){
             $event.preventDefault()
             console.log(message)
         }
     }
 }
</script>
Copy after login

Shorthand syntax

vuejs also provides a shorthand syntax to listen to

dom events.

 <!--简写语法@eventname="method"-->
<button @click="handleClick"></button>

  <!-- 长语法 -->
<button v-on:click="handleClick"></button>
Copy after login
This article is an introduction to Vue.JS event processing. I hope it will be helpful to friends in need!

The above is the detailed content of Vue.JS event handling tutorial and code examples. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!