25 lines
367 B
JavaScript
25 lines
367 B
JavaScript
|
import {
|
||
|
createStore
|
||
|
} from 'vuex'
|
||
|
const store = createStore({
|
||
|
state: {
|
||
|
userInfo:uni.getStorageSync("SY_USER")||null,
|
||
|
|
||
|
},
|
||
|
|
||
|
mutations: {
|
||
|
saveUserInfo(state, info) {
|
||
|
state.userInfo = info
|
||
|
uni.setStorageSync("SY_USER", info)
|
||
|
}
|
||
|
},
|
||
|
actions: {
|
||
|
saveUserInfo({
|
||
|
commit
|
||
|
}, info) {
|
||
|
commit('saveUserInfo', info)
|
||
|
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
export default store
|