export const state = { //用户数据 userInfo: {}, }; export const mutations = { //储存用户信息 setUserInfo(state, data) { if (data) { state.userInfo = Object.assign({}, state.userInfo,data); // #ifndef H5 uni.setStorageSync('userInfo', state.userInfo); // #endif }else{ state.userInfo = null } }, // 退出APP emptyUserInfo(state) { state.userInfo = {}; // #ifndef H5 uni.removeStorageSync("userInfo"); // #endif }, }; export const actions = { };