JIYIK CN >

Current Location:Home > Learning > WEB FRONT-END > Vue >

When calculating variables in Vue, which is better, methods or computed?

Author:JIYIK Last Updated:2025/03/01 Views:

When calculating variables in Vue, we usually use two methods: methods and computed. Although both can be used to calculate variables, there are still some differences in their use. This article will introduce in detail the differences between methods and computed and which method to use in what circumstances.

methods:

Methods can be understood as a method library of Vue, in which we can define some methods and then call these methods in the template. When we need to calculate some more complex variables, we can use methods to perform a series of calculations. For example, the following example:

<template>
  <div>
    <p>{{reverseMsg}}</p>
  </div>
</template>
<script>
export default {
  data() {
    return {
      message: 'hello'
    }
  },
  methods: {
    reverseMsg(){
      return this.message.split('').reverse().join('')
    }
  }
}
</script>

In the above example, we want to reverse the string of message, so we define a reverseMsgmethod to achieve this function. Calling the method in the template reverseMsgcan get the reversed string.

computed:

Computed can be understood as a calculated property of Vue. We can define some calculated properties in it and then call these calculated properties in the template. When we need to calculate some data-related variables, we can use computed to calculate. For example, the following example:

<template>
  <div>
    <p>{{reversedMsg}}</p>
  </div>
</template>
<script>
export default {
  data() {
    return {
      message: 'hello'
    }
  },
  computed: {
    reversedMsg() {
      return this.message.split('').reverse().join('')
    }
  }
}
</script>

In the above example, we also want to reverse the string of message, but we use computed to achieve this function. We define reversedMsg as a computed property, and then call it in the template to get the reversed string.

Which is better, methods or computed?

Both methods can be used to calculate variables, but in actual use, you still have to choose according to the specific situation. If we need to do more complex calculations, or need to perform some asynchronous operations, we need to use methods to implement them. If we need to do some simpler calculations, or need to monitor the changes of a certain attribute to refresh the variable in real time, we need to use computed to implement it.

In general, if you can use computed to calculate variables, use computed as much as possible , because computed will automatically update the calculation after the data changes, while methods will re-call the method. However, in some special cases, such as asynchronous operations, it is more convenient to use methods .


Summarize

In Vue, both methods and computed variables can be used to achieve our needs, but we still have to choose which method to use based on the specific situation. The difference between methods and computed properties mainly exists in the calculation process. Computed properties will cache the calculation results and implement responsive updates based on the properties, while methods will re-execute the calculation.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Webpack packages ES6 and CommonJs mixed React

Publish Date:2025/03/02 Views:179 Category:React

This article mainly introduces how to use webpack to package and compile React mixed with ES6 and CommonJs. It is a process of upgrading the React environment.

How to scroll to the top or bottom of the page in Vue.js

Publish Date:2025/03/01 Views:96 Category:Vue

Vue.js is a popular front-end framework that helps developers build efficient and maintainable applications. In Vue.js, scrolling the page to the top or bottom is a common requirement. In this article, we will introduce how to implement this

Display element or text on mouse hover in vue

Publish Date:2025/03/01 Views:179 Category:Vue

Vue.js is a popular JavaScript framework that makes web application development easier and more efficient. In this tutorial, we will learn how to use Vue.js to display an element or text on mouse hover. This tutorial will cover the following

What is the use of the immediate property of watch in Vue?

Publish Date:2025/03/01 Views:67 Category:Vue

In Vue, watch is a way to perform asynchronous tasks or trigger responsive dependencies when data changes. In most cases, watch will be delayed by default. This means that the watch will only be triggered when the value being monitored chang

Setting up checkbox functionality in Vue

Publish Date:2025/03/01 Views:186 Category:Vue

In Vue, checkboxes are a very common interactive component that allows users to select multiple options. This article will introduce how to set up checkbox functionality in Vue and provide some practical examples.

What happens if a child component changes the data in props in Vue?

Publish Date:2025/03/01 Views:140 Category:Vue

In Vue, when a child component changes the data in props, it will cause the responsiveness of the parent component and other child components to change. First, you need to understand that props is a way to pass data from a parent component t

How to refresh the page in Vue

Publish Date:2025/03/01 Views:91 Category:Vue

Vue is a popular JavaScript framework that provides many convenient tools and methods for building web applications. In Vue, page updates are usually achieved through data binding and responsive systems. But sometimes you need to refresh the

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial