溫馨提示×

溫馨提示×

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

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

vue3使用ref的性能警告問題如何解決

發(fā)布時間:2023-05-17 16:09:19 來源:億速云 閱讀:152 作者:iii 欄目:編程語言

本篇內容主要講解“vue3使用ref的性能警告問題如何解決”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“vue3使用ref的性能警告問題如何解決”吧!

    vue3使用ref的性能警告

    問題

    使用 ref 的性能警告 代碼如下

    <template>
      <div>
        <component :is="currentTabComponent"></component>
      </div>
    </template>
    
    <script setup>
    
    import { ref,shallowRef } from "vue";
    import TodoList from "./components/TodoList.vue";
    import Rate from "./components/Rate.vue";
    
    let tabs ={
      TodoList,
      Rate
    }
    let currentTabComponent = ref(TodoList)
    </script>
    警告

    runtime-core.esm-bundler.js:6591 [Vue warn]: Vue received a Component which was made a reactive object. This can lead to unnecessary performance overhead, and should be avoided by marking the component with markRaw or using shallowRef instead of ref. Component that was made reactive:
    譯文:
    runtime-core.esm-bundler.js:6591 [Vue 警告]:Vue 收到一個組件,該組件已成為響應式對象。這會導致不必要的性能開銷,應該通過使用 markRaw 標記組件或使用 shallowRef 代替 ref 來避免。被響應的組件:

    • markRaw: 標記一個對象,使其永遠不會轉換為 proxy。返回對象本身。

    • shallowRef: 創(chuàng)建一個跟蹤自身 .value 變化的 ref,但不會使其值也變成響應式的。

    解決

    我通過將對象標記為shallowRef解決了這個問題

    因此,不要將組件存儲在您的狀態(tài)中,而是存儲對它的鍵控引用,并針對對象進行查找

    完整代碼

    <template>
      <div>
        <h3>帶動畫的Todolist</h3>
        <button
          v-for="(i,tab) in tabs"
          :key="i"
          :class="['tab-button', { active: currentTabComponent === tab }]"
          @click="fn(tab)"
        >
          {{ tab }}
        </button>
        <component :is="currentTabComponent"></component>
      </div>
    </template>
    
    <script setup>
    
    import { ref,shallowRef } from "vue";
    import TodoList from "./components/TodoList.vue";
    import Rate from "./components/Rate.vue";
    
    let tabs ={
      TodoList,
      Rate
    }
    let currentTabComponent = shallowRef(TodoList)
    
    function fn (tab){
      currentTabComponent.value = tabs[tab]
    }
    </script>

    vue3 ref函數(shù)用法

    1.在setup函數(shù)中,可以使用ref函數(shù),用于創(chuàng)建一個響應式數(shù)據(jù),當數(shù)據(jù)發(fā)生改變時,Vue會自動更新UI

    <template>
        <div>
            <h3>{{mycount}}</h3>
            <button @click="changeMyCount">changeMyCount</button>
        </div>
    </template>
     
    <script>
    import { ref } from "vue";
    export default {
        name: "ref",
        setup(){
            const mycount = ref(2);
            const changeMyCount = ()=>{
                mycount.value = mycount.value + 2 ;
            }
            
            return {
                mycount,
                changeMyCount,
            }
        }
    };
    </script>

    ref函數(shù)僅能監(jiān)聽基本類型的變化,不能監(jiān)聽復雜類型的變化(比如對象、數(shù)組)

    監(jiān)聽復雜類型的變化可以使用reactive函數(shù)

    2.通過ref屬性獲取元素

    vue3需要借助生命周期方法,在setup執(zhí)行時,template中的元素還沒掛載到頁面上,所以必須在mounted之后才能獲取到元素。

    <template>
        <div>
            <div ref="box"><button>hehe</button></div>
        </div>
    </template>
     
    <script>
    import { ref } from "vue";
    export default {
        name: "ref",
        setup(){
            const box = ref(null)
            onMounted(()=>{
                console.log(box.value)
            })
        }
    };
    </script>

    到此,相信大家對“vue3使用ref的性能警告問題如何解決”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!

    向AI問一下細節(jié)

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

    AI