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.
 
 
 
 

18 lines
330 B

import { createStore } from 'vuex'
export default createStore({
state: {
islogin: false // 用户是否登录,默认没有登录
},
getters: {
},
mutations: {
updateIsLogin(state,islogin) {
state.islogin = islogin;
},
},
actions: {
},
modules: {
}
})