vue学习之vuex的模块命名空间

在使用vuex时,如果使用module后,应该如何区分每个模块呢,需要使用命名空间

使用步骤
  1. 在每个vuex模块中添加如下:
namespaced: true

如category模块:

export default {
  namespaced:true,
  state:{
    msg: '我是category仓库中的数据',
    num: 0
  },
  getters:{
    msg:state=>state.msg,
    num:state=>state.num
  },
  mutations:{
    ['ADD_FUN'](state){
      return state.num++;
    }
  },
  actions:{
  }
};

article模块

export default {
  namespaced:true,
  state:{
    msg:'我是article中的msg'
  },
  getters:{
    msg:state=>state.msg
  },
  mutations:{},
  actions:{}
};

store/index.js中注册模块

import Vue from 'vue'
import Vuex from 'vuex'
import articleStore from './articleStore'
import categoryStore from './categoryStore'

Vue.use(Vuex)

export default new Vuex.Store({
  modules:{
    // 放每个模块对应的小store
    articleStore,
    categoryStore
  }
});
  1. 如何使用命名空间
//category.vue
<template>
  <div class="category">
    category
    {{msg}}
    -------
    <button @click="ADD_FUN">+1</button>
    {{num}}
  </div>
</template>

<script>
import { mapGetters,mapMutations } from 'vuex'
export default {
  data () {
    return {
    }
  },
  computed: {
    ...mapGetters('categoryStore',['msg','num']),
  },
  methods: {
    ...mapMutations('categoryStore',['ADD_FUN'])
  },
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>

</style>

  • 总结:vuex模块命名空间的使用,主要加入namespaced:true到各个模块中。使用时,通过...mapGetters('模块名',['msg'])来使用即可。

vuex模块命名空间

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

King_960725

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值