美文网首页
vuex module 模块化

vuex module 模块化

作者: 醉笙情丶浮生梦 | 来源:发表于2019-07-26 17:52 被阅读0次

store.js

import Vue from "vue";
import Vuex from "vuex";
import vxUser from "./modules/user";
Vue.use(Vuex);

export default new Vuex.Store({
  modules: {
    vxUser
  }
});

user.js

const state = {
  token: false
};

const mutations = {
  setToken: (state, token) => {
    state.token = token;
  }
};

export default {
  namespaced: true,
  state,
  mutations
};

import {mapState, mapActions, mapMutations, mapGetters}

computed: {
  // 使用对象展开运算符将此对象混入到外部对象中
  // ...mapState({
  //   count: state => state.vxUser.token,
  //   token: "token"
  // })

  // 此写法需打开命名空间
  ...mapState("vxUser", {
    count: state => state.token
  })
},

methods: {
  ...mapMutations("vxUser", {
    amend: "setToken" // 将 `this.add()` 映射为 `this.$store.commit('increment')`
  })
}

参考:vuex 的 mapState mapActions mapMutations mapGetters 在模块 module 使用详解

相关文章

网友评论

      本文标题:vuex module 模块化

      本文链接:https://www.haomeiwen.com/subject/ddwdrctx.html