Summary of Vue watch monitoring methods

Summary of Vue watch monitoring methods

In vue , watch is used to respond to data changes. There are roughly three ways to use watch .

1. The role of watch in vue is just like its name, which is the role of monitoring

For example, there is an object:

watchData: {
    name: '',
    age: '',
}


2. Monitor the properties of this object

watchData: {
    handler: function() {
        console.log();
    },
    deep: true
}


The monitoring object can be monitored with deep , otherwise the changes of the object cannot be detected

3. Monitor the properties of this object

Method 1:

watch:
 'watchData.name'(newValue, oldValue) {
     console.log(newValue);
 }
}


Method 2:

watch:
    'watchData.name': {
        handler: function() {
            console.log();
        }
    }
},


Why do we need to monitor the properties of an object? If we monitor an object, any data inside the object will cause watch to be re-executed. This may not be what you want, that is, to monitor a certain property change before executing watch , or to monitor any property change inside the object before executing watch , which will also cause a certain loss in performance. Therefore, we use this method of monitoring a single property of the object to deal with it, and wrap the "object.property to be monitored in quotation marks"

4. Monitor the properties of this object

computed: {
    getName() {
        return this.watchData.name 
    }
},
watch:
    getName(newValue, oldValue) {
        console.log(newValue);
    }
},


This method is actually the same as the second one. The difference is that computed is used, and then the getName method is listened to. In fact, the getName method returns name attribute in the watchData object.

This is the end of this article about the summary of vue watch monitoring method. For more relevant vue watch monitoring method content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solve the pitfalls of calling methods in Vue watch
  • Detailed explanation of watch monitoring data changes in vue and each attribute in watch
  • Detailed explanation of the basic usage of VUE watch listener
  • Triggering timing of watch listener in vue (pitfalls of watch and solutions)

<<:  DHCP Configuration Tutorial in CentOS7 Environment

>>:  CSS implements 0.5px lines to solve mobile compatibility issues (recommended)

Recommend

How to solve the problem of blurry small icons on mobile devices

Preface Previously, I talked about the problem of...

MySQL DML statement summary

DML operations refer to operations on table recor...

MySQL 8.0.21 installation and configuration method graphic tutorial

Record the installation and configuration method ...

MySQL database table and database partitioning strategy

First, let's talk about why we need to divide...

Tools to convert static websites into RSS

<br /> This article is translated from allwe...

How to create a MySQL database (de1) using commands

1. Connect to MYSQL Format: mysql -h host address...

Tips for using top command in Linux

First, let me introduce the meaning of some field...

How to configure nginx+php+mysql in docker

First, understand a method: Entering a Docker con...

Detailed explanation of Linux one-line command to process batch files

Preface The best method may not be the one you ca...

Summary of MySQL stored procedure permission issues

MySQL stored procedures, yes, look like very rare...

Solution to EF (Entity Framework) inserting or updating data errors

Error message: Store update, insert, or delete st...

A detailed introduction to the Linux directory structure

When you first start learning Linux, you first ne...