您好,登錄后才能下訂單哦!
這篇文章主要介紹“vue3在setup中怎么使用mapState”,在日常操作中,相信很多人在vue3在setup中怎么使用mapState問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”vue3在setup中怎么使用mapState”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
hooks/useMapState.ts
import { computed } from "vue" import { mapState, useStore } from "vuex" export default function (state:any) { // 1. 獲取實例 $store const store = useStore() // 2. 遍歷狀態數據 const storeStateFns = mapState(state) // 3. 存放處理好的數據對象 const storeState = {} // 4. 對每個函數進行computed Object.keys(storeStateFns).forEach(fnKey => { const fn = storeStateFns[fnKey].bind({ $store: store }) // 遍歷生成這種數據結構 => {name: ref(), age: ref()} storeState[fnKey] = computed(fn) }) return storeState }
使用
<script lang="ts" setup> import useMapState from "@/hooks/useMapState" const myState:any = useMapState({ includeList: (state: any) => state.keepAlive.includeList }) const { includeList } = myState </script>
在Vue的組件中,要想使用Vuex中的多個State,我們經過會借助mapState輔助函數進行獲取值,但是在Vue3中,通過computed的來獲取多個值的方法官方并未提供,話不多說,直接上代碼。
useMapState.js
import { computed } from "vue"; import { mapState, useStore } from "vuex" export const useMapState = (getKeys) => { const store = useStore(); const storeState = {} const storeFns = mapState(getKeys) Object.keys(storeFns).forEach((fnKeys) => { const fn = storeFns[fnKeys].bind({$store: store}) storeState[fnKeys] = computed(fn) }) return storeState }
<script> import { useMapState } from ''./Hooks/useMapState.js' export default { setup() { const storeState = useMapState(['title', 'counter']) return { ...storeState } } } </script>
在setup語法糖中由于不能使用 return進行返回,所以只能按照如下方式寫了
<script setup> import { useMapState } from ''./Hooks/useMapState.js' const { title, counter } = useMapState(['title', 'counter']) </script>
到此,關于“vue3在setup中怎么使用mapState”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。