What is the difference Between watch and watchEffect in Vue.js 3?

Harish Kumar · · 3115 Views

There are a few cases where we may need to track a reactive property, and we can do this by utilizing a Vue watcher.

In Vue.js 3, in addition to the watch method, there’s a new watchEffect method.

How Does Vue watchEffect Work?

watchEffect is one of the approaches to track reactive dependencies in Vue3. We can simply write a method utilizing reactive properties, and at whatever point one of their values updates, our method will run.

One thing to note is that watchEffect will likewise run immediately at whatever point the component is initialized in addition to running when the dependency changes, so careful when attempting to access the DOM before it's mounted.

watchEffect Example:

let’s assume that we have a type of reactive userID property and simply need to log whenever it changes.

The code would resemble this:

setup () {
    const userID = ref(0)

    watchEffect(() => console.log(userID))
    
    setTimeout(() => {
      userID.value = 1
    }, 1000)

    /*
      * LOG
      * 0 
      * 1
    */

    return {
      date
    }
  }

So right when our component is instated, our watchEffect will run and log the initial value. Then, at whatever point the value of userID changes, our watchEffect will be triggered.

 Difference Between watch vs watchEffect 

So for what reason does this new watchEffect technique even exist when there's a watch method? 

There are some key differences. 

watchEffect will run a method at whatever point any of its dependencies are changed, while watch tracks a particular reactive property and will possibly run when that property changes. 

On the other hand, the watch tracks a particular property or properties and will possibly run when it changes. Likewise, with the way that a watch method is set up, it contains the old value of the property just as its updated value.

Additionally, the watch is lazy, so it will possibly trigger when the dependency changes. watchEffect runs immediately when the component is created and afterward tracks dependency.

So watch is useful for when: 

  1. You need to control which dependencies trigger the method. 

  2. You need access to the previous value.

  3. You need to lazily perform the method.

Obviously, I can't tell you which is best for your task. However, ensure you know the reasons why you're making a coding design choice.

0

Please login or create new account to add your comment.

0 comments
You may also like:

JavaScript's ES6 Spread Operator: A Secret Weapon for Arrays & Objects

The JavaScript (JS) language has gone through significant transformations since its inception. One of the most noteworthy additions to its arsenal is the ES6 Spread Operator. This (...)
Harish Kumar

What is JavaScript Promise? Understanding and Implementing Promises in JS

JavaScript, the language of the web, has evolved tremendously over the years, and with it, the methods for handling asynchronous operations have improved. One such advancement (...)
Harish Kumar

JavaScript Array Destructuring: Unpacking Arrays with Ease

JavaScript array destructuring is a powerful feature introduced in ES6 (ECMAScript 2015) that simplifies the process of extracting values from arrays. It allows you to unpack an (...)
Harish Kumar

Arrow Functions: The Modern Way to Write JavaScript

JavaScript Arrow Functions, introduced in ES6 (ECMAScript 2015), have become a fundamental part of modern JavaScript development. They offer a concise and elegant way to write (...)
Harish Kumar

Essential JavaScript Tips for Better Coding - A Guide to JavaScript Best Practices

In the ever-evolving landscape of web development, the significance of JavaScript cannot be overstated. As the backbone of interactive websites, mastering JavaScript is essential (...)
Harish Kumar

From Beginner to Pro: Master JavaScript with This Comprehensive Guide (ES2015-ES2023)

Calling all aspiring and seasoned developers! I'm ecstatic to announce the release of my comprehensive eBook, "JavaScript: A Comprehensive Guide from ES2015 to ES2023". This in-depth (...)
Harish Kumar