您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關如何使在Vue之外創建的變量具有響應性的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
如果你從 Vue
外部獲得一個變量,那么能夠使其具有響應性就很好。這樣你就可以在計算道具、觀察者和其他任何地方使用它,它就像 Vue
中的任何其他狀態一樣工作。
當你正在使用 options API,你只需將它放在data組件的部分中:
const externalVariable = getValue(); export default { data() { return { reactiveVariable: externalVariable, }; } };
當你在 Vue 3
中使用組合 API
,則可以使用ref
或reactive
這樣:
import { ref } from 'vue'; // 可以完全在 Vue 組件之外完成 const externalVariable = getValue(); const reactiveVariable = ref(externalVariable); // 使用 .value 訪問 console.log(reactiveVariable.value); 使用reactive來代替:\ import { reactive } from 'vue'; // 可以完全在 Vue 組件之外完成 const externalVariable = getValue(); // Reactive 僅適用于對象和數組 const anotherReactiveVariable = reactive(externalVariable); // 直接訪問 console.log(anotherReactiveVariable);
如果你仍在使用 Vue 2
(就像我們中的許多人一樣),你可以使用observable
而不是reactive
獲得完全相同的結果。
感謝各位的閱讀!關于“如何使在Vue之外創建的變量具有響應性”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。