// import { getStore, setStore } from '@/util/store'

const user = {
  state: {
    userInfo: {}
  },
  actions: {
  },
  mutations: {
    SET_USERIFNO: (state, userInfo) => {
      state.userInfo = userInfo
    }
  }
}
export default user