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.
34 lines
556 B
34 lines
556 B
2 years ago
|
import {
|
||
|
createStore
|
||
|
} from "vuex";
|
||
|
|
||
|
export default createStore({
|
||
|
state: {
|
||
|
islogin: true,
|
||
|
access_token:'',
|
||
|
refresh_token:'',
|
||
|
userinfo:{}
|
||
|
},
|
||
|
mutations: {
|
||
|
updateislog(state, islogin) {
|
||
|
state.islogin = islogin
|
||
|
},
|
||
|
updatetk(state, access_token) {
|
||
|
state.access_token = access_token
|
||
|
},
|
||
|
updaterftk(state, refresh_token) {
|
||
|
state.refresh_token = refresh_token
|
||
|
},
|
||
|
updatauser(state, userinfo) {
|
||
|
state.userinfo = userinfo
|
||
|
}
|
||
|
},
|
||
|
actions: {
|
||
|
huoqubeijin(context){
|
||
|
// context.commit('')
|
||
|
}
|
||
|
},
|
||
|
getters: {
|
||
|
},
|
||
|
modules: {}
|
||
|
});
|