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
1. Introduction I want to use selenium to scrape ...
1. CSS writing format 1. Inline styles You can wr...
1. Introduction to mysqldump mysqldump is a logic...
Table of contents 1. Effect 2. Main code 1. Effec...
Table of contents 1. Scene layout 2. Add a handle...
Logo optimization: 1.The logo image should be as ...
When the submenu of the navigation bar is generat...
Find the problem Today I am going to study the to...
Download link: Operating Environment CentOS 7.6 i...
Table of contents 1. List traversal 2. The role o...
Table of contents 1. View the storage engine of t...
1.device-width Definition: Defines the screen vis...
Use the Linux chmod command to control who can ac...
Table of contents 1. MySQL 8.0.18 installation 2....
Overview: I drew lessons from several timetable s...