PrefaceWhile computed properties are more appropriate in most cases, there are times when a custom listener is necessary. That’s why Vue provides a more general way to respond to changes in data through the watch option. This approach is most useful when you need to perform asynchronous or expensive operations when data changes. The difference between listeners and computed propertiesComputed properties cannot perform asynchronous operations, but listeners can perform asynchronous operations, which is equivalent to an upgraded version of calculated properties. How to use watch in vue3?Basic Use<template> <h1>watch listener page</h1> <p>Normal listening data: {{ num }}</p> <button @click="butFn">Click</button> </template> script import { ref, watch } from 'vue' // Remember to import whatever new features of Vue3 you need, and call setup() as needed { const num = ref(0) // watch (data to be listened, callback function) watch(num, (v1, v2) => { // v1 is the new value after the change // v2 is the value before the change console.log(v1, v2) // Key points: Listening to ordinary functions can obtain the values before and after modification, and the data being listened to must be responsive}) // Single machine event const butFn = () => { num.value++ } return { butFn, num } } Listening to multiple responsive dataconst num = ref(0) const num2 = ref(20) watch([num, num2], (v1, v2) => { // The result stored is an array, and the result returned is also an array formatted result // v1 is the array of the latest results // v2 is the array of old data console.log('v1', v1, 'v2', v2) // Summary: You can get the values before and after the update, and the listening result is also consistent with the order of array data}) Listen for responsive data defined by reactiveconst obj = reactive({ msg: 'Strange and cute' }) watch(obj, () => { // Only the latest value can be obtained console.log(obj.msg) }) Summary: If you listen to an object, the two parameters of the listener's callback function are the same result, indicating the latest object data. At this time, you can also directly read the listened object, and the value obtained is also the latest. Listen to a property of responsive data defined by reactiveconst obj = reactive({ msg: 'Strange and cute' }) watch(() => obj.msg,(v1, v2) => { // v1 is the latest value of the monitored data // v2 is the original value of the monitored data console.log(v1, v2) // Summary: If you listen to a property in an object, you need to use the arrow function // Listening to less data is beneficial to improve performance} ) Configuration Option Usageconst obj = reactive({ msg: { info: 'ooo' } }) watch(() => obj.msg,(v1, v2) => { console.log(v1, v2) }, { // The first rendering of the component triggers immediate: true, // Turn on deep monitoring, if the data in the object changes, it will also be monitored // If the monitored data is a relatively long expression, you need to use a function // But after writing it in function form, the inner data cannot change, so you need to add the deep option deep: true } ) SummarizeThis is the end of this article about the detailed explanation of the watch listener example in vue3.0. For more relevant vue3.0 watch listener 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:
|
<<: MYSQL database GTID realizes master-slave replication (super convenient)
>>: Solution to the Docker container being unable to access the host port
Table of contents Preface 1. Install NJS module M...
Apple Mug Icons and Extras HD StorageBox – add on...
Table of contents 1. What is Ts 2. Basic Grammar ...
1. The ul tag has a padding value by default in Mo...
This article uses examples to illustrate how to i...
What I have been learning recently involves knowl...
How to center an element in the browser window He...
As shown below, if it were you, how would you ach...
As shown below: Mainly execute authorization comm...
<br />From the launch of NetEase's new h...
Recently, I encountered a requirement to display ...
It is very important to monitor the operating sta...
How background-position affects the display of ba...
Hyperlinks are the most frequently used HTML elem...
If you’re looking for inspiration for columnar web...