index.js 544 B

12345678910111213141516171819202122
  1. import Vue from "vue";
  2. import Vuex from "vuex";
  3. // 这里可以引入模块文件
  4. // import location from "./modules/location";
  5. Vue.use(Vuex);
  6. const store = new Vuex.Store({
  7. state: {
  8. //公共的变量,这里的变量不能随便修改,只能通过触发mutations的方法才能改变
  9. },
  10. mutations: {
  11. //相当于同步的操作
  12. },
  13. actions: {
  14. //相当于异步的操作,不能直接改变state的值,只能通过触发mutations的方法才能改变
  15. },
  16. modules: {
  17. // location,
  18. },
  19. });
  20. export default store;