Vuex基本用法

 一、Vuex基本写法

store文件夹下,新建index.js

import Vue from 'vue'
import Vues from 'vuex'

Vue.use(Vuex)

const modulesFiles = require.context('./modules', true, /\.js$/)

const modules = modulesFiles.keys().reduce((modules, modulePath) => {
  const moduleName = modulePath.replace(/^\.\/(.*)\.\w+$/, '$1')
  const value = modulesFiles(modulePath)
  modules[moduleName] = value.default
  return modules
}, {})

const store = new Vuex.store({
    modules
})

export default store

main.js中引入store/index.js

import store from './store/index'


new Vue({
  router,
  store,
  render: (h) => h(App)
}).$mount('#app')

新建modules 文件夹,新建 home.js


const state = {
  menuList:[],
  selectedMenu: 1, 
  
}

const getters = {
  totalSum: (state) => {
    return state.selectedMenu + 1
  }
}

const mutations = {
  updateMenuList: (state, data) => {
    state.menuList= data
  },
 
}
const actions = {
  // -- 获取 菜单 list
  async getMenuList({ dispatch, state, commit }, paramObj = null) {
    const data = await getBubbleShowData(paramObj)
    commit('updateMenuList', data)
  }
}

export default {
  namespaced: true,
  state,
  getters,
  mutations,
  actions
}

二、Vuex中四个map方法的使用 mapState mapGetters mapActions mapMutations

1. mapState: 帮助我们映射state中的数据为计算属性,

  this.$store.state.home.checkedChildTheme // home是store的module

import {mapState,mapGetters} from 'vuex'

computed: {
    //借助mapState生成计算属性:selectMenu(对象写法)
     ...mapState({selectMenu:'selectMenu'}),
    
    // 获取modules里的state
    ...mapState({
      selectMenu: (state) => state.home.selectMenu
    })

         
    //借助mapState生成计算属性:selectMenu(数组写法)
    ...mapState(['selectMenu']),

    // 获取modules里的state
    ...mapState('home', ['selectMenu'])

}

2.mapGetter帮助我们映射getters中的数据为计算属性: 

this.$store.getters.totalSum

import {mapState,mapGetters} from 'vuex'

computed: {
    //借助mapGetters生成计算属性:totalSum(对象写法)
    ...mapGetters({totalSum:'totalSum'}),

    //借助mapGetters生成计算属性:totalSum(数组写法)
    ...mapGetters(['totalSum'])
},
// 原生写法

<p>{{$store.state.name}}</p>

3.mapActions用来生成actions对话,包含this.$store.dispatch(xxx)的函数

this.$store.dispatch('home/getMenuList', {})

import {mapState,mapGetters,mapMutations,mapActions} from 'vuex'

methods:{
    //靠mapActions生成:getList(对象形式)
    ...mapActions({getList:'getList'})

    //靠mapActions生成:getList(数组形式)
    ...mapActions(['getList'])

    // this.getList() 
}

4.mapMutations帮助我们生成mutations中的方法, 即 this.$store.commit()函数

 this.$store.commit('home/updateMenuList', val) 

methods:{
    //靠mapActions生成:updateSelectedMenu(对象形式)
    ...mapActions({updateSelectedMenu:'updateSelectedMenu'})

    //靠mapActions生成:updateSelectedMenu(数组形式)
    ...mapActions(['updateSelectedMenu'])
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值