91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

濮阳市| 赞皇县| 菏泽市| 越西县| 遂川县| 鱼台县| 元氏县| 调兵山市| 彰武县| 周至县| 宜川县| 荥阳市| 抚顺市| 吐鲁番市| 澄城县| 平江县| 收藏| 察哈| 阿拉善盟| 丁青县| 大名县| 淄博市| 荣昌县| 泰州市| 孝昌县| 隆昌县| 黔南| 浑源县| 滁州市| 许昌县| 德保县| 华宁县| 马公市| 温泉县| 库车县| 镇坪县| 潼南县| 华安县| 搜索| 遂平县| 赤城县|