Home > Web Front-end > JS Tutorial > body text

Introduction to Vue.js methods and events

不言
Release: 2019-03-18 13:16:49
forward
2430 people have browsed it

This article brings you an introduction to Vue.js methods and events. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Methods and events

@click The method name called does not need to be followed by brackets (). If the method has parameters, the native event object event will be passed in by default .

This design of monitoring events on HTML elements seems to tightly couple the DOM and JavaScript, violating the principle of separation, but in fact it is just the opposite. Because you can know which method is called through HTML, it decouples the logic from the DOM and facilitates maintenance.

The most important thing is that when the viewModel is destroyed, all event handlers will be automatically destroyed without handling it yourself.

Vue provides a special variable $event for accessing native DOM events.

    打开链接
Copy after login

Modifiers

Vue supports the following modifiers:

.stop

.prevent

.capture

.self.once

The specific usage is as follows:

##When adding an event listener Use event capture modeOnly Execute the callback when the event is triggered on the element itself (not a child element)Only triggered once, the same applies to components
Modifier functionUsage example
Prevent click events from bubbling
Submit events no longer reload the page
Modifiers can be concatenated
Only modifiers

...

...

...

When listening for keyboard events on a form element, you can also use key modifiers.

Modifier functionUsage exampleOnly in ##In addition to a specific keyCode, Vue also provides some shortcut names:
keyCode is 13 when calling vm.submit()

.enter

.tab

.delete (replenish the "delete" and "backspace" keys)

.esc

.space

.up

.down

.left

.right

These key modifiers can also be used in combination, or with the mouse:

.ctrl

.alt

.shift

.meta

This article is all over here. For more courses about vue.js, you can follow the php Chinese website The

JavaScript video tutorial

column! ! !

The above is the detailed content of Introduction to Vue.js methods and events. For more information, please follow other related articles on the PHP Chinese website!

source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!