Home Web Front-end Vue.js VUE3 basic tutorial: computed using Vue.js responsive framework

VUE3 basic tutorial: computed using Vue.js responsive framework

Jun 15, 2023 pm 10:19 PM
vue computed vuejs

Vue.js is an open source JavaScript framework that adopts the MVVM (Model-View-ViewModel) pattern and aims to provide a simple and flexible way to build user interfaces. Among them, the reactive framework is one of the most important features of Vue.js, which allows developers to perform two-way binding and responsive updates of data. In Vue.js, computed is one of the important concepts. This article will introduce the basic usage and examples of computed.

1. What is computed?

Computed is a property in Vue.js, which can realize the function of dynamically calculated properties. In other words, computed can dynamically calculate a new value based on the data it depends on, and the calculated property will automatically update when the data it depends on changes. Unlike methods, computed is a computed property rather than a method.

2. The basic use of computed

The computed attribute can be defined in the following way:

new Vue({
  // ...
  computed: {
    // 计算属性的 getter
    reversedMessage: function () {
      // `this` 指向 vm 实例
      return this.message.split('').reverse().join('')
    }
  }
})
Copy after login

In the above code, we define a computed attribute of reversedMessage, which is Calculation result based on message attribute.

Next, we will use the computed attribute in the HTML template. In order to get the value of the calculated attribute, we no longer bind the message directly, but use the computed attribute, as shown below:

<div id="example">
  <p>Original message: "{{ message }}"</p>
  <p>Computed reversed message: "{{ reversedMessage }}"</p>
</div>
Copy after login

In the template, we can use the difference expression {{ }} to display the calculation The value of the attribute. Since we have defined reversedMessage as a computed property, Vue.js automatically does the calculation and updates the view.

3. Computed caching mechanism

When the data on which the calculated attributes depend changes, computed will automatically recalculate and update the view. However, when the data on which the calculated attribute depends does not change, computed will remember the result of the last calculation and directly return the last value. This caching mechanism can improve application performance and efficiency.

For example, in the following code, we define a computed attribute fullName:

new Vue({
  // ...
  data: {
    firstName: 'Peter',
    lastName: 'Parker'
  },
  computed: {
    fullName: function () {
      console.log('computed')
      return this.firstName + ' ' + this.lastName
    }
  }
})
Copy after login

When we access fullName for the first time, the console will output a "computed" message. However, when we modify the value of the firstName or lastName attribute, computed will not recalculate each time, but directly returns the result of the last calculation.

4. The difference between computed and methods

Both computed and methods can be used to implement the function of dynamically calculating attributes. Their main difference lies in the caching mechanism of calculated attributes.

In the example, we define a calculated property fullName and a method getFullName:

new Vue({
  // ...
  data: {
    firstName: 'Peter',
    lastName: 'Parker'
  },
  computed: {
    fullName: function () {
      console.log('computed')
      return this.firstName + ' ' + this.lastName
    }
  },
  methods: {
    getFullName: function () {
      console.log('method')
      return this.firstName + ' ' + this.lastName
    }
  }
})
Copy after login

In the template, we can call fullName and getFullName in the following way:

<div id="example">
  <p>Computed fullName: "{{ fullName }}"</p>
  <p>Method fullName: "{{ getFullName() }}"</p>
</div>
Copy after login

We found that when calling the getFullName method, it will be recalculated every time without using the cached result. Therefore, if we need to call a method frequently, using the computed attribute can improve the performance and efficiency of the application.

5. Computed example

The following is an example of calculating the total price of a shopping cart. We assume that the data structure of the shopping cart is as follows:

new Vue({
  // ...
  data: {
    items: [
      { name: 'iPhone', price: 6999, count: 1 },
      { name: 'iPad', price: 3888, count: 2 },
      { name: 'MacBook', price: 9888, count: 1 }
    ]
  },
  computed: {
    totalPrice: function () {
      var result = 0
      for (var i = 0; i < this.items.length; i++) {
        result += this.items[i].price * this.items[i].count
      }
      return result
    }
  }
})
Copy after login

In the template, we can Use the computed attribute to display the total price of the shopping cart:

<div id="example">
  <table>
    <thead>
      <tr>
        <th>商品</th>
        <th>单价</th>
        <th>数量</th>
        <th>小计</th>
      </tr>
    </thead>
    <tbody>
      <tr v-for="(item, index) in items" :key="index">
        <td>{{ item.name }}</td>
        <td>{{ item.price }}</td>
        <td>{{ item.count }}</td>
        <td>{{ item.price * item.count }}</td>
      </tr>
      <tr>
        <td colspan="3">总价:</td>
        <td>{{ totalPrice }}</td>
      </tr>
    </tbody>
  </table>
</div>
Copy after login

In the above example, we define a calculated attribute totalPrice, which depends on the price and quantity of all items in the items array. Whenever the price or quantity of any item in the array changes, Vue.js will recalculate the total price and automatically update the view.

6. Summary

In Vue.js, computed is a very powerful and important feature. It is the key to realizing dynamically calculated properties. The caching mechanism of computed properties can improve application performance and efficiency. Unlike methods, computed is a computed property rather than a method. By learning and using computed, we can build excellent Vue.js applications more conveniently and efficiently.

The above is the detailed content of VUE3 basic tutorial: computed using Vue.js responsive framework. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use echarts in vue How to use echarts in vue May 09, 2024 pm 04:24 PM

Using ECharts in Vue makes it easy to add data visualization capabilities to your application. Specific steps include: installing ECharts and Vue ECharts packages, introducing ECharts, creating chart components, configuring options, using chart components, making charts responsive to Vue data, adding interactive features, and using advanced usage.

The role of export default in vue The role of export default in vue May 09, 2024 pm 06:48 PM

Question: What is the role of export default in Vue? Detailed description: export default defines the default export of the component. When importing, components are automatically imported. Simplify the import process, improve clarity and prevent conflicts. Commonly used for exporting individual components, using both named and default exports, and registering global components.

How to use map function in vue How to use map function in vue May 09, 2024 pm 06:54 PM

The Vue.js map function is a built-in higher-order function that creates a new array where each element is the transformed result of each element in the original array. The syntax is map(callbackFn), where callbackFn receives each element in the array as the first argument, optionally the index as the second argument, and returns a value. The map function does not change the original array.

The role of onmounted in vue The role of onmounted in vue May 09, 2024 pm 02:51 PM

onMounted is a component mounting life cycle hook in Vue. Its function is to perform initialization operations after the component is mounted to the DOM, such as obtaining references to DOM elements, setting data, sending HTTP requests, registering event listeners, etc. It is only called once when the component is mounted. If you need to perform operations after the component is updated or before it is destroyed, you can use other lifecycle hooks.

What are hooks in vue What are hooks in vue May 09, 2024 pm 06:33 PM

Vue hooks are callback functions that perform actions on specific events or lifecycle stages. They include life cycle hooks (such as beforeCreate, mounted, beforeDestroy), event handling hooks (such as click, input, keydown) and custom hooks. Hooks enhance component control, respond to component life cycles, handle user interactions and improve component reusability. To use hooks, just define the hook function, execute the logic and return an optional value.

What scenarios can event modifiers in vue be used for? What scenarios can event modifiers in vue be used for? May 09, 2024 pm 02:33 PM

Vue.js event modifiers are used to add specific behaviors, including: preventing default behavior (.prevent) stopping event bubbling (.stop) one-time event (.once) capturing event (.capture) passive event listening (.passive) Adaptive modifier (.self)Key modifier (.key)

Onmounted in vue corresponds to which life cycle of react Onmounted in vue corresponds to which life cycle of react May 09, 2024 pm 01:42 PM

onMounted in Vue corresponds to the useEffect lifecycle method in React, with an empty dependency array [], executed immediately after the component is mounted to the DOM.

Promise usage in vue Promise usage in vue May 09, 2024 pm 03:27 PM

Promise can be used to handle asynchronous operations in Vue.js. The steps include: creating a Promise object, performing an asynchronous operation and calling resolve or reject based on the result, and processing the Promise result (use .then() to handle success, .catch() to handle errors) . Advantages of Promises include readability, ease of debugging, and composability.

See all articles