How to define data examples in Vue

How to define data examples in Vue

Preface

In the development process, defining variables is a very frequent and basic task. How to reasonably define variables according to the usage scenarios and scope of the variables is a very small and easy thing to make mistakes.

Vue2 has been popular for many years. Most developers like to define many variables in the data option during the development process. This is very detrimental to the readability, maintainability and performance of the code. If you want to use variables well, you need to combine the characteristics of Vue and JS.

In Vue, variables can be divided into two types according to whether two-way data binding is required:

One is to hijack the data of Vue and respond to the changes of data to the view in real time.

As long as the data can only change the msg, the msg bound in the template will respond in real time

<template>
  <div>{{msg}}</div>
</template>

<script>
export default {
  data() {
    msg: "" 
  }
};
</script>

There is another method that does not need to be hijacked by Vue data:

Only works in scripts, not used in templates, no data hijacking required

name is only valid in the concatName function, so just define it as a local variable

age is needed in both getAge and concatName functions. It is not appropriate to use it as a local variable. Then its scope can be increased to facilitate its use in multiple places.

<script>
const age = 'bar'
export default {
  methods: {
    getAge() {
      return age
    },
    concatName() {
      let name = 'nordon'
      return `name:${name}, age: ${age}`
    }
  },
};
</script>

It is only used as rendering data in the template. After customization, it will not be modified in subsequent operations. If Vue is used to hijack this data, some performance will be wasted.

<template>
  <div v-for="item in arr">{{item.name}}</div>
</template>

<script>
const arr = Object.freeze([{
  name: 'nordon',
  age: 18
}])
export default {
  data() {
    return {
      arr
    }
  }
};
</script>

Use Object.freeze to freeze the data that does not need data hijacking. When recursively traversing the data in Vue for data hijacking, the data will not be hijacked. Especially for a large number of table-like data, the performance improvement will be significant.

You can see from the Vue source code why after using Object.freeze to process the data, there will be no data hijacking.

function defineReactive (obj, key) {
  // Delete irrelevant code and keep only the judgment condition const property = Object.getOwnPropertyDescriptor(obj, key)
  if (property && property.configurable === false) {
    return
  }
}

Summarize

This is the end of this article about how to define data in Vue. For more relevant Vue definition data content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  IDEA2020.1.2 Detailed tutorial on creating a web project and configuring Tomcat

>>:  MySQL merges multiple rows of data based on the group_concat() function

Recommend

Solve the problem of yum installation error Protected multilib versions

Today, when installing nginx on the cloud server,...

How to modify the port mapping of a running Docker container

Preface When docker run creates and runs a contai...

Several methods of deploying multiple front-end projects with nginx

I have summarized 3 methods to deploy multiple fr...

Detailed explanation of the difference between chown and chmod commands in Linux

In Linux system, both chmod and chown commands ca...

How to write transparent CSS for images using filters

How to write transparent CSS for images using filt...

Solution to MySql service disappearance for unknown reasons

Solution to MySql service disappearance for unkno...

Practice of realizing Echarts chart width and height adaptation in Vue

Table of contents 1. Install and import 2. Define...

Native JS to achieve image marquee effects

Today I will share with you a picture marquee eff...

5 tips for writing CSS to make your style more standardized

1. Arrange CSS in alphabetical order Not in alphab...

Super detailed basic JavaScript syntax rules

Table of contents 01 JavaScript (abbreviated as: ...

A brief analysis of the differences between undo, redo and binlog in MySQL

Table of contents Preface 【undo log】 【redo log】 【...

Introduction to Royal Blue Color Matching for Web Design

Classical color combinations convey power and auth...

JavaScript plugin encapsulation for table switching

This article shares the encapsulation code of Jav...

TypeScript interface definition case tutorial

The role of the interface: Interface, in English:...