农经大屏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
357 B

  1. import Vue from 'vue';
  2. import Vuex from 'vuex';
  3. import VuexPersistence from 'vuex-persist';
  4. import app from '@/store/app/index.js';
  5. Vue.use(Vuex);
  6. const vuexLocal = new VuexPersistence({
  7. key: 'rongxin.nongjing.expo',
  8. modules: ['app']
  9. });
  10. export default new Vuex.Store({
  11. modules: {
  12. app
  13. },
  14. plugins: [vuexLocal.plugin]
  15. });