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.
 
 
 
 

17 lines
455 B

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
}