Event Handling

Learn how to handle events in a free Vue School lesson

Listening to Events

We can use the v-on directive, which we typically shorten to the @ symbol, to listen to DOM events and run some JavaScript when they’re triggered. The usage would be v-on:click="methodName" or with the shortcut, @click="methodName"

For example:

  1. <div id="basic-event">
  2. <button @click="counter += 1">Add 1</button>
  3. <p>The button above has been clicked {{ counter }} times.</p>
  4. </div>
  1. Vue.createApp({
  2. data() {
  3. return {
  4. counter: 1
  5. }
  6. }
  7. }).mount('#basic-event')

Result:

See the Pen Event handling: basic by Vue (@Vue) on CodePen.

Method Event Handlers

The logic for many event handlers will be more complex though, so keeping your JavaScript in the value of the v-on attribute isn’t feasible. That’s why v-on can also accept the name of a method you’d like to call.

For example:

  1. <div id="event-with-method">
  2. <!-- `greet` is the name of a method defined below -->
  3. <button @click="greet">Greet</button>
  4. </div>
  1. Vue.createApp({
  2. data() {
  3. return {
  4. name: 'Vue.js'
  5. }
  6. },
  7. methods: {
  8. greet(event) {
  9. // `this` inside methods points to the Vue instance
  10. alert('Hello ' + this.name + '!')
  11. // `event` is the native DOM event
  12. if (event) {
  13. alert(event.target.tagName)
  14. }
  15. }
  16. }
  17. }).mount('#event-with-method')

Result:

See the Pen Event handling: with a method by Vue (@Vue) on CodePen.

Methods in Inline Handlers

Instead of binding directly to a method name, we can also use methods in an inline JavaScript statement:

  1. <div id="inline-handler">
  2. <button @click="say('hi')">Say hi</button>
  3. <button @click="say('what')">Say what</button>
  4. </div>
  1. Vue.createApp({
  2. methods: {
  3. say(message) {
  4. alert(message)
  5. }
  6. }
  7. }).mount('#inline-handler')

Result:

See the Pen Event handling: with an inline handler by Vue (@Vue) on CodePen.

Sometimes we also need to access the original DOM event in an inline statement handler. You can pass it into a method using the special $event variable:

  1. <button @click="warn('Form cannot be submitted yet.', $event)">
  2. Submit
  3. </button>
  1. // ...
  2. methods: {
  3. warn(message, event) {
  4. // now we have access to the native event
  5. if (event) {
  6. event.preventDefault()
  7. }
  8. alert(message)
  9. }
  10. }

Event Modifiers

It is a very common need to call event.preventDefault() or event.stopPropagation() inside event handlers. Although we can do this easily inside methods, it would be better if the methods can be purely about data logic rather than having to deal with DOM event details.

To address this problem, Vue provides event modifiers for v-on. Recall that modifiers are directive postfixes denoted by a dot.

  • .stop
  • .prevent
  • .capture
  • .self
  • .once
  • .passive
  1. <!-- the click event's propagation will be stopped -->
  2. <a @click.stop="doThis"></a>
  3. <!-- the submit event will no longer reload the page -->
  4. <form @submit.prevent="onSubmit"></form>
  5. <!-- modifiers can be chained -->
  6. <a @click.stop.prevent="doThat"></a>
  7. <!-- just the modifier -->
  8. <form @submit.prevent></form>
  9. <!-- use capture mode when adding the event listener -->
  10. <!-- i.e. an event targeting an inner element is handled here before being handled by that element -->
  11. <div @click.capture="doThis">...</div>
  12. <!-- only trigger handler if event.target is the element itself -->
  13. <!-- i.e. not from a child element -->
  14. <div @click.self="doThat">...</div>

TIP

Order matters when using modifiers because the relevant code is generated in the same order. Therefore using @click.prevent.self will prevent all clicks while @click.self.prevent will only prevent clicks on the element itself.

  1. <!-- the click event will be triggered at most once -->
  2. <a @click.once="doThis"></a>

Unlike the other modifiers, which are exclusive to native DOM events, the .once modifier can also be used on component events. If you haven’t read about components yet, don’t worry about this for now.

Vue also offers the .passive modifier, corresponding to addEventListener‘s passive optionEvent Handling - 图1.

  1. <!-- the scroll event's default behavior (scrolling) will happen -->
  2. <!-- immediately, instead of waiting for `onScroll` to complete -->
  3. <!-- in case it contains `event.preventDefault()` -->
  4. <div @scroll.passive="onScroll">...</div>

The .passive modifier is especially useful for improving performance on mobile devices.

TIP

Don’t use .passive and .prevent together, because .prevent will be ignored and your browser will probably show you a warning. Remember, .passive communicates to the browser that you don’t want to prevent the event’s default behavior.

Key Modifiers

When listening for keyboard events, we often need to check for specific keys. Vue allows adding key modifiers for v-on or @ when listening for key events:

  1. <!-- only call `vm.submit()` when the `key` is `Enter` -->
  2. <input @keyup.enter="submit" />

You can directly use any valid key names exposed via KeyboardEvent.keyEvent Handling - 图2 as modifiers by converting them to kebab-case.

  1. <input @keyup.page-down="onPageDown" />

In the above example, the handler will only be called if $event.key is equal to 'PageDown'.

Key Aliases

Vue provides aliases for the most commonly used keys:

  • .enter
  • .tab
  • .delete (captures both “Delete” and “Backspace” keys)
  • .esc
  • .space
  • .up
  • .down
  • .left
  • .right

System Modifier Keys

You can use the following modifiers to trigger mouse or keyboard event listeners only when the corresponding modifier key is pressed:

  • .ctrl
  • .alt
  • .shift
  • .meta

Note

On Macintosh keyboards, meta is the command key (⌘). On Windows keyboards, meta is the Windows key (⊞). On Sun Microsystems keyboards, meta is marked as a solid diamond (◆). On certain keyboards, specifically MIT and Lisp machine keyboards and successors, such as the Knight keyboard, space-cadet keyboard, meta is labeled “META”. On Symbolics keyboards, meta is labeled “META” or “Meta”.

For example:

  1. <!-- Alt + Enter -->
  2. <input @keyup.alt.enter="clear" />
  3. <!-- Ctrl + Click -->
  4. <div @click.ctrl="doSomething">Do something</div>

TIP

Note that modifier keys are different from regular keys and when used with keyup events, they have to be pressed when the event is emitted. In other words, keyup.ctrl will only trigger if you release a key while holding down ctrl. It won’t trigger if you release the ctrl key alone

.exact Modifier

The .exact modifier allows control of the exact combination of system modifiers needed to trigger an event.

  1. <!-- this will fire even if Alt or Shift is also pressed -->
  2. <button @click.ctrl="onClick">A</button>
  3. <!-- this will only fire when Ctrl and no other keys are pressed -->
  4. <button @click.ctrl.exact="onCtrlClick">A</button>
  5. <!-- this will only fire when no system modifiers are pressed -->
  6. <button @click.exact="onClick">A</button>

Mouse Button Modifiers

  • .left
  • .right
  • .middle

These modifiers restrict the handler to events triggered by a specific mouse button.

Why Listeners in HTML?

You might be concerned that this whole event listening approach violates the good old rules about “separation of concerns”. Rest assured - since all Vue handler functions and expressions are strictly bound to the ViewModel that’s handling the current view, it won’t cause any maintenance difficulty. In fact, there are several benefits in using v-on or @:

  1. It’s easier to locate the handler function implementations within your JS code by skimming the HTML template.

  2. Since you don’t have to manually attach event listeners in JS, your ViewModel code can be pure logic and DOM-free. This makes it easier to test.

  3. When a ViewModel is destroyed, all event listeners are automatically removed. You don’t need to worry about cleaning it up yourself.