1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| 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;
| },
| },
| };
|
|