1. Function BindingYou can use v-on:click="methodName" or the shortcut @click="methodName" to bind the event handler function @click="methodName()" is also OK. @click="methodName" is probably a shorthand. <div v-on:click="add">{{ count }}</div> <div @click="add">{{ count }}</div> data() { return { count: 0, }; }, methods: { add() { this.count++; }, }, 2. With parameters and $eventYou can pass parameters and $event directly to the event binding function <div @click="set(0, $event)">{{ count }}</div> data() { return { count: 0, }; }, methods: { add() { this.count++; }, set(value, event) { console.log(event); this.count = value; }, }, 3. Binding multiple functions to one eventMultiple functions are separated by commas. Even if there is no parameter in the function, parentheses must be added, otherwise the function will not be executed. For example, <div @click="set(0, $event), log">{{ count }}</div> will only execute set <div @click="set(0, $event), log()">{{ count }}</div> data() { return { count: 0, }; }, methods: { add() { this.count++; }, log() { console.log("log---"); }, set(value, event) { console.log(event); this.count = value; }, }, 4. Event modifiersWhen using modifiers, order is important; the corresponding code will be generated in the same order
5. Key Modifiers
6. System modifier keysThe modifier key must be pressed when the event is triggered
.exact Modifier
Mouse Button Modifiers<button @click.left="log('left cllilck')">Left click of the mouse</button> <button @click.right="log('right cllilck')">Right click</button> <button @click.middle="log('middle cllilck')">middle click</button> SummarizeThis article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: CSS mimics remote control buttons
>>: Detailed steps to install Docker mongoDB 4.2.1 and collect springboot logs
When talking about the screen reading software op...
As shown below: #!/usr/bin/env python3.5 import p...
Table of contents 1. Problematic SQL statements S...
The nginx logs are collected by filebeat and pass...
Table of contents 1. Trigger Solution 2. Partitio...
1. What is responsive design? Responsive design i...
How can I hide the scrollbars while still being a...
Table of contents 1. Basic Example 2. Set the sco...
This article will introduce how to query data in ...
1. Download the alpine image [root@DockerBrian ~]...
If someone asked you whether running EXPLAIN on a...
Table of contents 1. Steps 1. Define buttom permi...
<br />Related articles: How to prompt and op...
With the increasing number of open platforms, the ...
Table of contents 1. Basic knowledge of indexing ...