In 1. The role of watch in vue is just like its name, which is the role of monitoringFor example, there is an object: watchData: { name: '', age: '', } 2. Monitor the properties of this objectwatchData: { handler: function() { console.log(); }, deep: true } The monitoring object can be monitored with 3. Monitor the properties of this objectMethod 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 4. Monitor the properties of this objectcomputed: { 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 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:
|
<<: DHCP Configuration Tutorial in CentOS7 Environment
>>: CSS implements 0.5px lines to solve mobile compatibility issues (recommended)
This article example shares the specific code of ...
Preface Previously, I talked about the problem of...
Database version: mysql> select version(); +--...
DML operations refer to operations on table recor...
Record the installation and configuration method ...
First, let's talk about why we need to divide...
<br /> This article is translated from allwe...
Today, I will answer these newbie questions: Build...
1. Connect to MYSQL Format: mysql -h host address...
First, let me introduce the meaning of some field...
First, understand a method: Entering a Docker con...
Preface The best method may not be the one you ca...
MySQL stored procedures, yes, look like very rare...
Error message: Store update, insert, or delete st...
When you first start learning Linux, you first ne...