1. Basic event handling Using // v-on directive <div v-on:click='handleClick' /> //OR <div @click='handleClick' /> 2. Send custom events to parent componentsA common use case in any web framework is to want child components to be able to emit events to their parent components, which is also the principle of two-way data binding. A common example is sending data from Depending on whether we are using In export default { methods: { handleUpdate: () => { this.$emit('update', 'Hello World') } } } However, As long as you import export default { setup (props, context) { const handleUpdate = () => { context.emit('update', 'Hello World') } return { handleUpdate } } } Of course, I often use deconstruction in my projects: export default { setup (props, { emit }) { const handleUpdate = () => { emit('update', 'Hello World') } return { handleUpdate } } } Perfect! Whether we use <HelloWorld @update='inputUpdated'/> First, we can If there is a value passed in the component The first is to use <HelloWorld @update='inputUpdated($event)'/> The second method is to use a method to handle the event, and the passed value will be automatically passed to our method as the first parameter. <HelloWorld @update='inputUpdated'/> // ... methods: { inputUpdated: (value) => { console.log(value) // WORKS TOO } } Mouse ModifiersHere is a list of the main DOM mouse events we can capture in the v-on directive: <div @mousedown='handleEvent' @mouseup='handleEvent' @click='handleEvent' @dblclick='handleEvent' @mousemove='handleEvent' @mouseover='handleEvent' @mousewheel='handleEvent' @mouseout='handleEvent' > Interact with Me! </div> For click events, we can also add mouse event modifiers to restrict which mouse button will trigger our event. There are three: <!-- This will only trigger the left mouse button--> <div @mousedown.left='handleLeftClick'> Left </div> 4. Keyboard ModifiersThere are three DOM keyboard events we can listen to: <input type='text' placeholder='Type something' @keypress='handleKeyPressed' @keydown='handleKeyDown' @keyup='handleKeyUp' /> Typically, we want to detect these events on a certain key, and there are two ways to do this.
<!-- Trigger even when enter is released --> <input type='text' placeholder='Type something' @keyup.enter='handleEnter' /> <!-- OR --> <input type='text' placeholder='Type something' @keyup.13='handleEnter' /> 5. System ModifiersFor some projects, we may only want to trigger an event if the user holds down a modifier key. Modifier keys are like Command or Shift. In Vue, there are four system modifiers .
This is useful for creating features like custom keyboard shortcuts in your <!-- Custom shortcut, Yang uses Shift + 8 to create a list --> <input type='text' placeholder='Type something' @keyup.shift.56='createList' /> From the <!-- Custom shortcuts, only Shift + 8 will create a list when pressed--> <input type='text' placeholder='Type something' @keyup.shift.56.exact='createList' /> 6. Event modifiers As with all <!-- Prevent default behavior --> <form @submit.prevent> <!-- Stop bubbling --> <form @submit.stop='submitForm'> <!-- Prevent default behavior and bubbling --> <form @submit.stop.prevent='submitForm'> <!-- Prevent events from being triggered multiple times --> <div @close.once='handleClose'> There is no way to know in real time what bugs may exist after the code is deployed. In order to solve these bugs afterwards, a lot of time was spent on log debugging. Here I would like to recommend a useful bug monitoring tool, Fundebug. This is the end of this article about Vue Event Handling Guide of Vue3. For more relevant Vue Event Handling Guide content, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Learn more about MySQL indexes
>>: mySQL server connection, disconnection and cmd operation
Table of contents 1. Introduction to calculator f...
<br />Most of the time when we talk about na...
Overview As for the current default network of Do...
When I first started setting up an ftp server on ...
Table of contents concept Array Destructuring Dec...
Problem phenomenon I recently used sysbench to te...
This article discusses several major zero-copy te...
Table of contents Preface question principle test...
Preface This article mainly introduces the releva...
Float is often used in web page layout, but the f...
As components become more detailed, you will enco...
Table of contents background example Misconceptio...
This article shares with you how to use canvas an...
Solve the problem that the responseText returned ...
Table of contents 1. Background 2. What is silent...