Detailed explanation of Vue's methods and properties

Detailed explanation of Vue's methods and properties

Vue methods and properties

1. Methods

Usage 1

methods: {
Method name: function(){},
}

Usage 2

methods: {
method name(){}
}

Notice

{ {}}Call to write()

Example

{ {aa()}}

Event triggering

@click=aa" can have () or not. If you need to pass parameters, add ()
Passing the special parameter $event can get the event object

2. Computed properties

What are computed properties?

computed

Characteristics of computed properties

  1. Computed properties have cache
  2. Computed properties are cached based on their dependencies.
  3. Computed properties are only re-evaluated when their dependencies change.
  4. When the properties that the calculated property depends on change, it will be recalculated.

Methods in computed properties

set(da)
get()

Example

 	computed:{
                 //Calculated properties//Calculated properties are cached//Directly call {{}} without writing ()
                 //When the attribute that the calculated attribute depends on changes, it will recalculate once bb(){
                    return this.arr.filter(a=>a.indexOf(this.search) > -1)
                 },
                 cc:{
                     //When the calculated property is called, the get method is automatically triggered, and when the calculated property is modified, the set method is automatically triggered set(a){
                        console.log('I am set'+"received content"+a+"received content")
                     },
                     get(){
                        console.log('I am get')
                        return this.arr.filter(a=>a.indexOf(this.search) > -1)

                     }
                 }
            },

This is the end of this article about Vue's methods and property cases. For more information about Vue's methods and properties, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of calculated properties, monitoring properties and life cycle in Vue.js
  • Summary of the use of Vue computed properties and listeners
  • Computed properties and listening properties in Vue
  • Detailed explanation of Vue's calculated properties
  • Vue computed property code example
  • Vue calculation attributes + class and style binding in Vue (recommended)
  • Vue learning notes: calculation properties and listener usage
  • Solution to Vue's calculation property not being able to monitor changes within the array

<<:  CentOS 6 uses Docker to deploy redis master-slave database operation example

>>:  How to add fields and comments to a table in sql

Recommend

Three ways to jump to a page by clicking a button tag in HTML

Method 1: Using the onclick event <input type=...

Basic learning tutorial of table tag in HTML

Table label composition The table in HTML is comp...

How to build php7 with docker custom image

First, perform a simple Docker installation. To c...

What is BFC? How to clear floats using CSS pseudo elements

BFC Concept: The block formatting context is an i...

A brief analysis of the responsiveness principle and differences of Vue2.0/3.0

Preface Since vue3.0 was officially launched, man...

Multiple ways to insert SVG into HTML pages

SVG (Scalable Vector Graphics) is an image format...

MariaDB under Linux starts with the root user (recommended)

Recently, due to the need to test security produc...

HTML table markup tutorial (1): Creating a table

<br />This is a series of tutorials provided...

WeChat applet canvas implements signature function

In the WeChat applet project, the development mod...

React+ts realizes secondary linkage effect

This article shares the specific code of React+ts...

JS implements random generation of verification code

This article example shares the specific code of ...

Front-end JavaScript operation principle

Table of contents 1. What is a JavaScript engine?...

Introduction to network drivers for Linux devices

Wired network: Ethernet Wireless network: 4G, wif...