中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue3?ref和reactive的區別有哪些

發布時間:2023-03-17 10:16:35 來源:億速云 閱讀:109 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“vue3 ref和reactive的區別有哪些”,內容詳細,步驟清晰,細節處理妥當,希望這篇“vue3 ref和reactive的區別有哪些”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

Ref

ref數據響應式監聽。ref 函數傳入一個值作為參數,一般傳入基本數據類型,返回一個基于該值的響應式Ref對象,該對象中的值一旦被改變和訪問,都會被跟蹤到,就像我們改寫后的示例代碼一樣,通過修改 count.value 的值,可以觸發模板的重新渲染,顯示最新的值

<template>
  
  <h2>{{name}}</h2>
  <h2>{{age}}</h2>
  <button @click="sayName">按鈕</button>
</template>

<script lang="ts">
import {ref,computed} from 'vue' 

export default {
  name: 'App',
  setup(){
    const name = ref('zhangsan')
    const birthYear = ref(2000)
    const now = ref(2020)
    const age = computed(()=>{
      return now.value - birthYear.value
    })
    const sayName = () =>{
      name.value = 'I am ' + name.value
    }
    return {
      name,
      sayName,
      age
    }
  }
}
</script>

reactive

reactive是用來定義更加復雜的數據類型,但是定義后里面的變量取出來就不在是響應式Ref對象數據了

所以需要用toRefs函數轉化為響應式數據對象

vue3?ref和reactive的區別有哪些

將上面用ref寫的代碼轉化成reactive型的代碼

<template>
  <!-- <img alt="Vue logo" src="./assets/logo.png"> -->
  <div>
    <h2>{{ name }}</h2>
    <h2>{{ age }}</h2>
    <button @click="sayName">按鈕</button>
  </div>
</template>

<script lang="ts">
import { computed, reactive,toRefs } from "vue";

interface DataProps {
  name: string;
  now: number;
  birthYear: number;
  age: number;
  sayName: () => void;
}

export default {
  name: "App",
  setup() {
   

    const data: DataProps = reactive({
      name: "zhangsan",
      birthYear: 2000,
      now: 2020,
      sayName: () => {
        console.log(1111);
        console.log(data.name);
        
        data.name = "I am " + data.name;
        console.log(data.name);
      },
      age: computed(() => {
        return data.now - data.birthYear;
      }),
    });

    const refData = toRefs(data)
    refData.age
    return {
      ...refData,
    };
  },
};
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

讀到這里,這篇“vue3 ref和reactive的區別有哪些”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

昆山市| 丰顺县| 高阳县| 麻江县| 游戏| 钟祥市| 定陶县| 金湖县| 宁晋县| 黄平县| 阿鲁科尔沁旗| 乌什县| 宜州市| 二连浩特市| 博湖县| 扬中市| 屯昌县| 泰来县| 图们市| 南部县| 龙陵县| 富民县| 易门县| 玉溪市| 临潭县| 梁平县| 玉环县| 含山县| 教育| 三原县| 合水县| 姚安县| 伊川县| 霍林郭勒市| 瑞昌市| 嘉义县| 新兴县| 和龙市| 昂仁县| 浑源县| 腾冲县|