后端

index.js 507B

123456789101112131415161718192021222324
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import cloneDeep from 'lodash/cloneDeep'
  4. import common from './modules/common'
  5. import user from './modules/user'
  6. Vue.use(Vuex)
  7. export default new Vuex.Store({
  8. modules: {
  9. common,
  10. user
  11. },
  12. mutations: {
  13. // 重置vuex本地储存状态
  14. resetStore (state) {
  15. Object.keys(state).forEach((key) => {
  16. state[key] = cloneDeep(window.SITE_CONFIG['storeState'][key])
  17. })
  18. }
  19. },
  20. strict: process.env.NODE_ENV !== 'production'
  21. })