WatchEffect Advanced Listener
In Vue 3, we can usewatchEffect
Functions to create advanced listeners. andwatch
andcomputed
different,watchEffect
There is no need to specify a dependency, it automatically tracks changes in responsive state and reruns when it changes.
Use the watchEffect function
Here is a simple example usingwatchEffect
Functions to listen for a responsive state and output a message when the state changes:
import { reactive, watchEffect } from 'vue'; const state = reactive({ count: 0, }); watchEffect(() => { (`Count is now: ${}`); }); // Change the state, output Count is now: 1++;
In the example above, we usereactive
Function to create a responsive objectstate
and usewatchEffect
Function to create a listener.watchEffect
The function accepts a function as an argument, which is automatically run and uses responsive states there. This function is rerun when any of the responsive states change.
Stop listening
andwatch
andcomputed
different,watchEffect
The function does not return a function that stops listening. If we need to stop listening, we canwatchEffect
The return value is set tonull
,For example:
import { reactive, watchEffect } from 'vue'; const state = reactive({ count: 0, }); const stop = watchEffect(() => { (`Count is now: ${}`); }); // Change the state, output Count is now: 1++; // Stop listeningstop();
In the example above, we willwatchEffect
The return value is saved to a variablestop
, and then call this function when you need to stop listening.
Listen to multiple states
If you need to listen for multiple responsive states, we canwatchEffect
Use these states in the function and return a calculated value in the function, for example:
import { reactive, watchEffect } from 'vue'; const state = reactive({ count1: 0, count2: 0, }); watchEffect(() => { const sum = state.count1 + state.count2; (`Sum is now: ${sum}`); }); // Change the state, output Sum is now: 1state.count1++; // Change the state, output Sum is now: 3state.count2 += 2;
In the example above, we usereactive
Function creates a responsive objectstate
, and inwatchEffect
Used in the functionstate.count1
andstate.count2
Two responsive states, then the sum of these two states is calculated and the sum is output.
Lazy execution
andcomputed
similar,watchEffect
Functions also support lazy evaluation. If we willwatchEffect
The second parameter is set to{ lazy: true }
, then this function will be run only when the responsive state is accessed for the first time, for example:
import { reactive, watchEffect } from 'vue'; const state = reactive({ count: 0, }); watchEffect( () => { (`Count is now: ${}`); }, { lazy: true } ); // Access status, output Count is now: 1++;
In the example above, we willwatchEffect
The second parameter is set to{ lazy: true }
, then accessed the responsive state in the code. At this time,
watchEffect
The functions in the program will be run.
Summarize
watchEffect
Functions are a new feature in Vue 3 that can be used to create advanced listeners, automatically track changes in responsive states, and re-run when they change. andwatch
andcomputed
different,watchEffect
There is no need to specify a dependency, it automatically tracks changes in responsive state. If you need to stop listening, we canwatchEffect
The return value is set tonull
. If you need to listen for multiple responsive states, we canwatchEffect
Use these states in the function and return a calculated value in the function.watchEffect
Functions also support lazy evaluation and can be run only when the responsive state is accessed for the first time.
This is the end of this article about creating advanced listeners by Vue WatchEffect function. For more related Vue WatchEffect content, please search for my previous articles or continue browsing the related articles below. I hope everyone will support me in the future!