vue# methods and event handlers

Source: Internet
Author: User

Listens for DOM events with instructions.

https://jsfiddle.net/miloer/cz4ybz3e/

Vue provides event modifiers to resolve event.preventDefault() orevent.stopPropagation()。

<!--block Click event bubbling--><a v-on:click.stop= "Dothis" ></a><!--commit event no longer overloads the page--><form v-on: Submit.prevent= "OnSubmit" ></form><!--modifiers can be concatenated--><a v-on:click.stop.prevent= "Dothat" ><!-- Only modifier--><form v-on:submit.prevent></form>

  


<!--added two additional modifiers when adding event listeners using capture mode---1.0.16:

<div v-on:click.capture= "Dothis" >...</div><!--only the event triggers a callback--><div v-on when the element itself (not the child element) is triggered: click.self= "Dothat" >...</div>

  

There are also key modifiers:

<!--only KeyCode is 13 o'clock call Vm.submit ()--><input v-on:keyup.13= "Submit" >

  

all the key aliases: <v-on:keyup.enter=<input @keyup.enter="Submit" >     
    • Enter
    • tab
    • Delete
    • Esc
    • Space
    • Up
    • Down
    • Left
    • Right

Vue# method and event handler

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.