您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“uniapp中怎么使用vuex”,內容詳細,步驟清晰,細節處理妥當,希望這篇“uniapp中怎么使用vuex”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
1 .在根目錄下新建文件夾store,在此目錄下新建index.js文件(uniapp中有自帶vuex插件,直接引用即可)
其中index.js內容為
import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex); export default new Vuex.Store({ state: { hasLogin: false, // 登錄狀態 userInfo: {}, // 用戶信息 }, mutations: { setHasLogin(state, value){ state.hasLogin = value console.log(state.hasLogin) } }, actions: { setHasLogin(context) { context.commit('setHasLogin') } }, getters: { reverseLoginStatus(state) { return state.hasLogin = !state.hasLogin } } })
在main.js中導入
import Vue from 'vue' import App from './App' //這里 import store from '@/store/index.js' Vue.config.productionTip = false //這里 Vue.prototype.$store = store App.mpType = 'app' const app = new Vue({ ...App, //這里 store, }) app.$mount()
//獲取state中的值 this.$store.state.loginStatus //修改state中的值,這里需要在mutations中定義修改的方法,如上setHasLogin this.$store.commit('setHasLogin', true); //調用actions中的方法,這里需要在actions中定義方法 this.$store.dispatch('setHasLogin') //調用getters中的方法,這里需要在getters中定義方法 this.$store.getters.reverseLoginStatus
//頁面內導入vuex的mapState跟mapMutations方法 import { mapState, mapMutations } from 'vuex' computed: { ...mapState(['hasLogin']) } methods: { ...mapMutations(['setHasLogin']), }
需要注意的是,原生vuex用多了很容易順手,this.$store.state直接就用,這里直接寫在dom里是獲取不到的。
//直接在temmplate中使用是無法獲取到的 <temmplate> <div>{{this.$store.state.loginStatus}}</div> </temmplate>
解決辦法(如上述2.2的使用):
//這樣就可以使用啦 <temmplate> <div>{{this.$store.state.loginStatus}}</div> </temmplate> <script> export default { computed:{ loginStatus() { return this.$store.state.loginStatus }, } } </script>
讀到這里,這篇“uniapp中怎么使用vuex”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。