美文网首页
vuex-along

vuex-along

作者: 盖伦_2985 | 来源:发表于2019-11-04 16:22 被阅读0次
    安装
    npm install vuex-along --save 
    yarn add vuex-along
    
    import Vue from 'vue';
    import Vuex from 'vuex';
    import createVuexAlong from "vuex-along";
    
    const moduleA = {
      state: {
        a1: "hello",
      }
    };
    
    const store = new Vuex.Store({
      state: {
        count: nll
         token:''",
      },
      mutations: {
        set_count: (state, payload) => {
          state.count= payload
        },
        set_token: (state, payload) => {
          state.token = payload
        },
      plugins: [
        createVuexAlong({
          name: "hello-vuex-along", // 设置保存的集合名字,避免同站点下的多项目数据冲突
          local: {
            list: ["ma"],
            isFilter: true // 过滤模块 ma 数据, 将其他的存入 localStorage
          },
          session: {
            list: ["count", "ma.a1"] // 保存 count 和模块 ma 中的 a1 到 sessionStorage
          }
        })
      ]
    });
    
    

    相关文章

      网友评论

          本文标题:vuex-along

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