WeiXin.ZhiXueHuiCha.MiniPro.../store/index.ts

14 lines
247 B
TypeScript

import { createStore } from "vuex";
export default createStore({
state: {
IsLogin:false // 是否登录
},
mutations:{
setIsLogin(state: any, data: any) {
state.IsLogin = data
}
},
actions:{},
getters:{}
});