import actions from './actions.js' import mutations from './mutations.js' export default { namespaced: true, state: { token: null, userInfo: null, config: null }, getters: { token: state => state.token || uni.getStorageSync('token'), userInfo: state => state.userInfo || uni.getStorageSync('userInfo') || {}, config: state => state.config || uni.getStorageSync('config') || {} }, actions, mutations }