4

操作步骤

  1. 在src目录中创建文件夹 vuex,并创建如下文件.

图片描述

  • vuex/index store实例
import Vue from 'vue';
import Vuex from 'vuex'; // 引入对应模块
import status from './moudules/status/index';//引入vue模块

Vue.use(Vuex);//安装Vue插件 vuex

export default new Vuex.Store({
  modules:{ //将 store 分割成模块
    status
  }
});//导出vuex实例
  • vuex/moudule/status/index vuex模块,每个模块有自己的 state,getters,actions,mutations
import actions from './actions';
import mutations from './mutations';
import getters from './getters';
import state from './state';

export default {
  namespaced: true, //命名空间,自动根据模块注册的路径调整命名
  state,
  getters,
  actions,
  mutations
};
  • state.js vuex state
export default {
  count: 0
}
  • getter.js
export default {
  /*getters可以帮我们从state中进一步过滤我们需要的一些状态条件*/

  getCount: (state) => {
    return state.count;
  }
}
  • mutation_type.js 命名变量
//这个js文件里面只是一些变量,把action和mutation文件里面相同变量名的链接起来
export const VUEX_TEST = 'increment';
// 一般使用的是大写来命名变量,因为尤大也是这么做 2333
  • actions.js
    import * as types from './mutation_type';
    export default {
      addCount({commit}){
        commit(types.VUEX_TEST);
      }
    };
  • mutations.js
import * as types from './mutation_type';//引入变量
export default {
  //types.VUEX_TEST 代表接受哪个actions的commit 也就是上面引入变量的作用
  [types.VUEX_TEST](state){
    state.count++
  }
};

使用

  • main.js
import Vue from 'vue'
import App from './App'
import MintUI from 'mint-ui'
import router from './router'
import store from  './vuex';//引入文件

Vue.config.productionTip = false;//设置为 false 以阻止 vue 在启动时生成生产提示。
Vue.use(MintUI);

new Vue({
  el: '#app',
  router,
  store,
  components: { App },
  template: '<App/>'
})
  • components
<template>
  <div id="app">
    <img src="./assets/logo.png">
    <div>
        <p>{{getCount}}</p>
        <mt-button type="primary" v-on:click="add">add</mt-button>
    </div>
    <router-view/>
  </div>
</template>

<script>
import axios from "axios";
import { mapGetters, mapActions, mapState } from "vuex";

export default {
  name: "App",
  data: ()=> {
    return {
      selected: 1
    };
  },
  watch: {
    selected: function(val) {
      console.log(val);
    }
  },
  computed:{
   ...mapGetters({
      'getCount': 'status/getCount'
   })
  },
  mounted:function(){
    console.log(this.$store.state.status.count)
  },
  methods:{
    add(){
      console.log(this.$store.dispatch('status/addCount'));
    }
  }
};
</script>

梵鹿
246 声望37 粉丝