An article teaches you how to use Vue's watch listener

An article teaches you how to use Vue's watch listener

Listener watch

  • The function name is the name of the element to listen to.
  • The first parameter passed in is the new value newval after the change, and the second is the old value oldval before the change

Format

Listener in method format

  • It cannot be triggered automatically when entering the page. It will only be triggered when changes are detected.
  • If you listen to an object, you will not hear when the object's properties change.

Object format listener

  • The immediate option allows the listener to be triggered automatically
  • The deep option allows the listener to listen deeply to changes in the properties of the object.

This is the data object in the Vue instance:

insert image description here

Set up the listener:

The following are listeners in method format and listeners in object format:

The listener in method format is implemented by triggering the listener when the content in the input changes, listening to the content in the input (the content is bound to the term). If the content in the current input is not in the already array, it is added to the already array, otherwise a prompt box pops up to indicate that the name already exists.

The object-format listener is implemented by triggering the listener immediately once the page is loaded, listening for changes in the name attribute of the foo object.

insert image description here

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of the watch listener example in vue3.0
  • How to use watch listeners in Vue2 and Vue3
  • Solve the problem of undefined when calling this in vue listener watch
  • Vue 2.0 listener watch attribute code detailed explanation
  • Advanced examples of watch usage in Vue.js

<<:  Detailed explanation of the difference between flex and inline-flex in CSS

>>:  HTML head structure

Recommend

HTML basics - CSS style sheets, style attributes, format and layout details

1. position : fixed Locked position (relative to ...

How to use CocosCreator for sound processing in game development

Table of contents 1. Basics of audio playback in ...

A brief discussion on how to learn JS step by step

Table of contents Overview 1. Clearly understand ...

MySQL 5.6 compressed package installation method

There are two installation methods for MySQL: msi...

Vue implements a shopping cart that can change the shopping quantity

This article shares with you how to use Vue to ch...

JavaScript to achieve slow motion animation effect

This article shares the specific code for JavaScr...

How to use resident nodes for layer management in CocosCreator

CocosCreator version: 2.3.4 Most games have layer...

Detailed explanation of pure SQL statement method based on JPQL

JPQL stands for Java Persistence Query Language. ...

A brief discussion on the semantics of HTML and some simple optimizations

1. What is semanticization? Explanation of Bing D...

Make your text dance with the marquee attribute in HTML

Syntax: <marquee> …</marquee> Using th...

How to use cursor triggers in MySQL

cursor The set of rows returned by the select que...