export default { namespaced: true, state: { id: 0, name: "", }, mutations: { updateId(state, id) { state.id = id; }, updateName(state, name) { state.name = name; }, googleAuthBind(state, googleAuthBind) { state.googleAuthBind = googleAuthBind; }, }, };