import { getUserInfo, Appversion } from "../../api/user.js"; import { LOGIN_STATUS, UID, USER_INFO } from '../../config/cache'; import Cache from '../../utils/cache'; const state = { storage: {}, location:{ lat: null, long: null, } }; const mutations = { setStorage(state, data) { state.storage = data; }, setLocation(state, data){ state.location.lat = data.lat; state.location.long = data.long; } }; const actions = { }; export default { state, mutations, actions };