Introduction to reactive function toRef function ref function in Vue3

Introduction to reactive function toRef function ref function in Vue3

Reactive Function

reactive is used to define responsive data (which can be understood as a substitute for data)

usage:

import { reactive } from 'vue'

use:

const state = reactive({
    parameter name: parameter value})

Access: state.parameter name

Access: state.parameter name

toRef function (just understand it)

toRef: Extract a field from the responsive data into a separate responsive data

usage:

import import { toRef } from 'vue'

use:

const state = reactive({
    num:0
})
const num=toRef(state(responsive data),'num attribute name')
num:{
    value:0
}
Ref can actually be understood as a data type: {value: value}

Access: num.value===0

Note:

HTML: You don't need to write value when using responsive data

Value must be written in js

ref function

Defining Responsive Data

{
    value:value}

Direct definition using

import import {ref} from 'vue'
setup(){
Define const num = ref({a:1,b:2})  
    num:{
       value:{a:1,b:2}
    }
}

Access: num.value===0

reactive: Applicable to multiple data, ref is applicable to single data

Get DOM

<template>
  <div ref="target">123</div>
</template>
scripte
import {ref} from 'vue'
setup(){
   const target = ref(null)   
   return {target} 
   target.value is the corresponding DOM   
}

Get component instance object

ref is used for native tags to get dom

ref is used for component tags to obtain component instance objects

The usage is the same as getting DOM

<template>
  <component tag ref="target">123</component tag>
</template>
script
import {ref} from 'vue'
setup(){
   const target = ref(null)   
   return {target} 
   target.value is the component instance object}

The above is the detailed content of the introduction of the reactive function toRef function ref function in Vue3. For more information about Vue3 functions, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Reactive function declaration array method in Vue3
  • In-depth understanding of reactive in Vue3
  • Do you know ref, computed, reactive and toRefs of Vue3?
  • setup+ref+reactive implements vue3 responsiveness
  • Detailed analysis of the difference between Ref and Reactive in Vue3.0
  • Solution to reactive not being able to assign values ​​directly in Vue3

<<:  Differentiate between null value and empty character ('') in MySQL

>>:  Linux directory switching implementation code example

Recommend

Example code for configuring monitoring items and aggregated graphics in Zabbix

1. Install Zabbix Agent to monitor the local mach...

JavaScript Basics Operators

Table of contents 1. Operators Summarize 1. Opera...

JavaScript to filter arrays

This article example shares the specific code for...

Detailed explanation of several error handling when Nginx fails to start

When using Nginx as a Web server, I encountered t...

js drag and drop table to realize content calculation

This article example shares the specific code of ...

How to get the size of a Linux system directory using the du command

Anyone who has used the Linux system should know ...

MySQL query method with multiple conditions

mysql query with multiple conditions Environment:...

JavaScript canvas Tetris game

Tetris is a very classic little game, and I also ...

Detailed explanation of MySQL InnoDB index extension

Index extension: InnoDB automatically extends eac...

Solution to many line breaks and carriage returns in MySQL data

Table of contents Find the problem 1. How to remo...

How to set the default value of a MySQL field

Table of contents Preface: 1. Default value relat...

Vue mobile terminal determines the direction of finger sliding on the screen

The vue mobile terminal determines the direction ...

Four ways to modify the default CSS style of element-ui components in Vue

Table of contents Preface 1. Use global unified o...